index.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true,
  4. });
  5. Object.defineProperty(exports, 'BreakingChangeType', {
  6. enumerable: true,
  7. get: function () {
  8. return _findBreakingChanges.BreakingChangeType;
  9. },
  10. });
  11. Object.defineProperty(exports, 'DangerousChangeType', {
  12. enumerable: true,
  13. get: function () {
  14. return _findBreakingChanges.DangerousChangeType;
  15. },
  16. });
  17. Object.defineProperty(exports, 'TypeInfo', {
  18. enumerable: true,
  19. get: function () {
  20. return _TypeInfo.TypeInfo;
  21. },
  22. });
  23. Object.defineProperty(exports, 'assertValidName', {
  24. enumerable: true,
  25. get: function () {
  26. return _assertValidName.assertValidName;
  27. },
  28. });
  29. Object.defineProperty(exports, 'astFromValue', {
  30. enumerable: true,
  31. get: function () {
  32. return _astFromValue.astFromValue;
  33. },
  34. });
  35. Object.defineProperty(exports, 'buildASTSchema', {
  36. enumerable: true,
  37. get: function () {
  38. return _buildASTSchema.buildASTSchema;
  39. },
  40. });
  41. Object.defineProperty(exports, 'buildClientSchema', {
  42. enumerable: true,
  43. get: function () {
  44. return _buildClientSchema.buildClientSchema;
  45. },
  46. });
  47. Object.defineProperty(exports, 'buildSchema', {
  48. enumerable: true,
  49. get: function () {
  50. return _buildASTSchema.buildSchema;
  51. },
  52. });
  53. Object.defineProperty(exports, 'coerceInputValue', {
  54. enumerable: true,
  55. get: function () {
  56. return _coerceInputValue.coerceInputValue;
  57. },
  58. });
  59. Object.defineProperty(exports, 'concatAST', {
  60. enumerable: true,
  61. get: function () {
  62. return _concatAST.concatAST;
  63. },
  64. });
  65. Object.defineProperty(exports, 'doTypesOverlap', {
  66. enumerable: true,
  67. get: function () {
  68. return _typeComparators.doTypesOverlap;
  69. },
  70. });
  71. Object.defineProperty(exports, 'extendSchema', {
  72. enumerable: true,
  73. get: function () {
  74. return _extendSchema.extendSchema;
  75. },
  76. });
  77. Object.defineProperty(exports, 'findBreakingChanges', {
  78. enumerable: true,
  79. get: function () {
  80. return _findBreakingChanges.findBreakingChanges;
  81. },
  82. });
  83. Object.defineProperty(exports, 'findDangerousChanges', {
  84. enumerable: true,
  85. get: function () {
  86. return _findBreakingChanges.findDangerousChanges;
  87. },
  88. });
  89. Object.defineProperty(exports, 'getIntrospectionQuery', {
  90. enumerable: true,
  91. get: function () {
  92. return _getIntrospectionQuery.getIntrospectionQuery;
  93. },
  94. });
  95. Object.defineProperty(exports, 'getOperationAST', {
  96. enumerable: true,
  97. get: function () {
  98. return _getOperationAST.getOperationAST;
  99. },
  100. });
  101. Object.defineProperty(exports, 'getOperationRootType', {
  102. enumerable: true,
  103. get: function () {
  104. return _getOperationRootType.getOperationRootType;
  105. },
  106. });
  107. Object.defineProperty(exports, 'introspectionFromSchema', {
  108. enumerable: true,
  109. get: function () {
  110. return _introspectionFromSchema.introspectionFromSchema;
  111. },
  112. });
  113. Object.defineProperty(exports, 'isEqualType', {
  114. enumerable: true,
  115. get: function () {
  116. return _typeComparators.isEqualType;
  117. },
  118. });
  119. Object.defineProperty(exports, 'isTypeSubTypeOf', {
  120. enumerable: true,
  121. get: function () {
  122. return _typeComparators.isTypeSubTypeOf;
  123. },
  124. });
  125. Object.defineProperty(exports, 'isValidNameError', {
  126. enumerable: true,
  127. get: function () {
  128. return _assertValidName.isValidNameError;
  129. },
  130. });
  131. Object.defineProperty(exports, 'lexicographicSortSchema', {
  132. enumerable: true,
  133. get: function () {
  134. return _lexicographicSortSchema.lexicographicSortSchema;
  135. },
  136. });
  137. Object.defineProperty(exports, 'printIntrospectionSchema', {
  138. enumerable: true,
  139. get: function () {
  140. return _printSchema.printIntrospectionSchema;
  141. },
  142. });
  143. Object.defineProperty(exports, 'printSchema', {
  144. enumerable: true,
  145. get: function () {
  146. return _printSchema.printSchema;
  147. },
  148. });
  149. Object.defineProperty(exports, 'printType', {
  150. enumerable: true,
  151. get: function () {
  152. return _printSchema.printType;
  153. },
  154. });
  155. Object.defineProperty(exports, 'separateOperations', {
  156. enumerable: true,
  157. get: function () {
  158. return _separateOperations.separateOperations;
  159. },
  160. });
  161. Object.defineProperty(exports, 'stripIgnoredCharacters', {
  162. enumerable: true,
  163. get: function () {
  164. return _stripIgnoredCharacters.stripIgnoredCharacters;
  165. },
  166. });
  167. Object.defineProperty(exports, 'typeFromAST', {
  168. enumerable: true,
  169. get: function () {
  170. return _typeFromAST.typeFromAST;
  171. },
  172. });
  173. Object.defineProperty(exports, 'valueFromAST', {
  174. enumerable: true,
  175. get: function () {
  176. return _valueFromAST.valueFromAST;
  177. },
  178. });
  179. Object.defineProperty(exports, 'valueFromASTUntyped', {
  180. enumerable: true,
  181. get: function () {
  182. return _valueFromASTUntyped.valueFromASTUntyped;
  183. },
  184. });
  185. Object.defineProperty(exports, 'visitWithTypeInfo', {
  186. enumerable: true,
  187. get: function () {
  188. return _TypeInfo.visitWithTypeInfo;
  189. },
  190. });
  191. var _getIntrospectionQuery = require('./getIntrospectionQuery.js');
  192. var _getOperationAST = require('./getOperationAST.js');
  193. var _getOperationRootType = require('./getOperationRootType.js');
  194. var _introspectionFromSchema = require('./introspectionFromSchema.js');
  195. var _buildClientSchema = require('./buildClientSchema.js');
  196. var _buildASTSchema = require('./buildASTSchema.js');
  197. var _extendSchema = require('./extendSchema.js');
  198. var _lexicographicSortSchema = require('./lexicographicSortSchema.js');
  199. var _printSchema = require('./printSchema.js');
  200. var _typeFromAST = require('./typeFromAST.js');
  201. var _valueFromAST = require('./valueFromAST.js');
  202. var _valueFromASTUntyped = require('./valueFromASTUntyped.js');
  203. var _astFromValue = require('./astFromValue.js');
  204. var _TypeInfo = require('./TypeInfo.js');
  205. var _coerceInputValue = require('./coerceInputValue.js');
  206. var _concatAST = require('./concatAST.js');
  207. var _separateOperations = require('./separateOperations.js');
  208. var _stripIgnoredCharacters = require('./stripIgnoredCharacters.js');
  209. var _typeComparators = require('./typeComparators.js');
  210. var _assertValidName = require('./assertValidName.js');
  211. var _findBreakingChanges = require('./findBreakingChanges.js');