@ardatan/relay-compiler 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. package/LICENSE +21 -0
  2. package/bin/RelayCompilerBin.js.flow +169 -0
  3. package/bin/RelayCompilerMain.js.flow +515 -0
  4. package/bin/__fixtures__/plugin-module.js.flow +17 -0
  5. package/bin/relay-compiler +19066 -0
  6. package/codegen/CodegenDirectory.js.flow +375 -0
  7. package/codegen/CodegenRunner.js.flow +432 -0
  8. package/codegen/CodegenTypes.js.flow +28 -0
  9. package/codegen/CodegenWatcher.js.flow +254 -0
  10. package/codegen/NormalizationCodeGenerator.js.flow +566 -0
  11. package/codegen/ReaderCodeGenerator.js.flow +512 -0
  12. package/codegen/RelayCodeGenerator.js.flow +85 -0
  13. package/codegen/RelayFileWriter.js.flow +367 -0
  14. package/codegen/SourceControl.js.flow +58 -0
  15. package/codegen/compileRelayArtifacts.js.flow +182 -0
  16. package/codegen/createPrintRequireModuleDependency.js.flow +19 -0
  17. package/codegen/sortObjectByKey.js.flow +25 -0
  18. package/codegen/writeRelayGeneratedFile.js.flow +239 -0
  19. package/core/ASTCache.js.flow +74 -0
  20. package/core/ASTConvert.js.flow +233 -0
  21. package/core/CompilerContext.js.flow +191 -0
  22. package/core/CompilerError.js.flow +255 -0
  23. package/core/DotGraphQLParser.js.flow +39 -0
  24. package/core/GraphQLCompilerProfiler.js.flow +341 -0
  25. package/core/GraphQLDerivedFromMetadata.js.flow +36 -0
  26. package/core/GraphQLWatchmanClient.js.flow +111 -0
  27. package/core/IR.js.flow +326 -0
  28. package/core/IRPrinter.js.flow +478 -0
  29. package/core/IRTransformer.js.flow +377 -0
  30. package/core/IRValidator.js.flow +260 -0
  31. package/core/IRVisitor.js.flow +150 -0
  32. package/core/JSModuleParser.js.flow +24 -0
  33. package/core/RelayCompilerScope.js.flow +199 -0
  34. package/core/RelayFindGraphQLTags.js.flow +119 -0
  35. package/core/RelayGraphQLEnumsGenerator.js.flow +55 -0
  36. package/core/RelayIRTransforms.js.flow +138 -0
  37. package/core/RelayParser.js.flow +1734 -0
  38. package/core/RelaySourceModuleParser.js.flow +135 -0
  39. package/core/Schema.js.flow +2037 -0
  40. package/core/SchemaUtils.js.flow +120 -0
  41. package/core/filterContextForNode.js.flow +50 -0
  42. package/core/getFieldDefinition.js.flow +156 -0
  43. package/core/getIdentifierForArgumentValue.js.flow +49 -0
  44. package/core/getIdentifierForSelection.js.flow +69 -0
  45. package/core/getLiteralArgumentValues.js.flow +32 -0
  46. package/core/getNormalizationOperationName.js.flow +19 -0
  47. package/core/inferRootArgumentDefinitions.js.flow +323 -0
  48. package/index.js +10 -0
  49. package/index.js.flow +200 -0
  50. package/language/RelayLanguagePluginInterface.js.flow +283 -0
  51. package/language/javascript/FindGraphQLTags.js.flow +137 -0
  52. package/language/javascript/RelayFlowBabelFactories.js.flow +176 -0
  53. package/language/javascript/RelayFlowGenerator.js.flow +1100 -0
  54. package/language/javascript/RelayFlowTypeTransformers.js.flow +184 -0
  55. package/language/javascript/RelayLanguagePluginJavaScript.js.flow +34 -0
  56. package/language/javascript/formatGeneratedModule.js.flow +65 -0
  57. package/lib/bin/RelayCompilerBin.js +143 -0
  58. package/lib/bin/RelayCompilerMain.js +486 -0
  59. package/lib/bin/__fixtures__/plugin-module.js +16 -0
  60. package/lib/codegen/CodegenDirectory.js +336 -0
  61. package/lib/codegen/CodegenRunner.js +433 -0
  62. package/lib/codegen/CodegenTypes.js +11 -0
  63. package/lib/codegen/CodegenWatcher.js +271 -0
  64. package/lib/codegen/NormalizationCodeGenerator.js +480 -0
  65. package/lib/codegen/ReaderCodeGenerator.js +472 -0
  66. package/lib/codegen/RelayCodeGenerator.js +68 -0
  67. package/lib/codegen/RelayFileWriter.js +270 -0
  68. package/lib/codegen/SourceControl.js +60 -0
  69. package/lib/codegen/compileRelayArtifacts.js +157 -0
  70. package/lib/codegen/createPrintRequireModuleDependency.js +19 -0
  71. package/lib/codegen/sortObjectByKey.js +41 -0
  72. package/lib/codegen/writeRelayGeneratedFile.js +208 -0
  73. package/lib/core/ASTCache.js +70 -0
  74. package/lib/core/ASTConvert.js +198 -0
  75. package/lib/core/CompilerContext.js +165 -0
  76. package/lib/core/CompilerError.js +251 -0
  77. package/lib/core/DotGraphQLParser.js +40 -0
  78. package/lib/core/GraphQLCompilerProfiler.js +299 -0
  79. package/lib/core/GraphQLDerivedFromMetadata.js +31 -0
  80. package/lib/core/GraphQLWatchmanClient.js +150 -0
  81. package/lib/core/IR.js +11 -0
  82. package/lib/core/IRPrinter.js +389 -0
  83. package/lib/core/IRTransformer.js +345 -0
  84. package/lib/core/IRValidator.js +226 -0
  85. package/lib/core/IRVisitor.js +45 -0
  86. package/lib/core/JSModuleParser.js +18 -0
  87. package/lib/core/RelayCompilerScope.js +149 -0
  88. package/lib/core/RelayFindGraphQLTags.js +79 -0
  89. package/lib/core/RelayGraphQLEnumsGenerator.js +50 -0
  90. package/lib/core/RelayIRTransforms.js +109 -0
  91. package/lib/core/RelayParser.js +1382 -0
  92. package/lib/core/RelaySourceModuleParser.js +104 -0
  93. package/lib/core/Schema.js +1877 -0
  94. package/lib/core/SchemaUtils.js +98 -0
  95. package/lib/core/filterContextForNode.js +49 -0
  96. package/lib/core/getFieldDefinition.js +145 -0
  97. package/lib/core/getIdentifierForArgumentValue.js +53 -0
  98. package/lib/core/getIdentifierForSelection.js +48 -0
  99. package/lib/core/getLiteralArgumentValues.js +26 -0
  100. package/lib/core/getNormalizationOperationName.js +17 -0
  101. package/lib/core/inferRootArgumentDefinitions.js +351 -0
  102. package/lib/index.js +178 -0
  103. package/lib/language/RelayLanguagePluginInterface.js +14 -0
  104. package/lib/language/javascript/FindGraphQLTags.js +126 -0
  105. package/lib/language/javascript/RelayFlowBabelFactories.js +160 -0
  106. package/lib/language/javascript/RelayFlowGenerator.js +857 -0
  107. package/lib/language/javascript/RelayFlowTypeTransformers.js +119 -0
  108. package/lib/language/javascript/RelayLanguagePluginJavaScript.js +30 -0
  109. package/lib/language/javascript/formatGeneratedModule.js +36 -0
  110. package/lib/reporters/ConsoleReporter.js +61 -0
  111. package/lib/reporters/MultiReporter.js +45 -0
  112. package/lib/reporters/Reporter.js +11 -0
  113. package/lib/runner/Artifacts.js +323 -0
  114. package/lib/runner/BufferedFilesystem.js +261 -0
  115. package/lib/runner/GraphQLASTNodeGroup.js +256 -0
  116. package/lib/runner/GraphQLASTUtils.js +23 -0
  117. package/lib/runner/GraphQLNodeMap.js +81 -0
  118. package/lib/runner/Sources.js +271 -0
  119. package/lib/runner/StrictMap.js +134 -0
  120. package/lib/runner/compileArtifacts.js +39 -0
  121. package/lib/runner/extractAST.js +77 -0
  122. package/lib/runner/getChangedNodeNames.js +82 -0
  123. package/lib/runner/getSchemaInstance.js +30 -0
  124. package/lib/runner/types.js +12 -0
  125. package/lib/transforms/ApplyFragmentArgumentTransform.js +393 -0
  126. package/lib/transforms/ClientExtensionsTransform.js +222 -0
  127. package/lib/transforms/ConnectionTransform.js +643 -0
  128. package/lib/transforms/DeclarativeConnectionMutationTransform.js +221 -0
  129. package/lib/transforms/DeferStreamTransform.js +247 -0
  130. package/lib/transforms/DisallowIdAsAlias.js +41 -0
  131. package/lib/transforms/DisallowTypenameOnRoot.js +53 -0
  132. package/lib/transforms/FieldHandleTransform.js +81 -0
  133. package/lib/transforms/FilterCompilerDirectivesTransform.js +29 -0
  134. package/lib/transforms/FilterDirectivesTransform.js +41 -0
  135. package/lib/transforms/FlattenTransform.js +308 -0
  136. package/lib/transforms/GenerateIDFieldTransform.js +137 -0
  137. package/lib/transforms/GenerateTypeNameTransform.js +155 -0
  138. package/lib/transforms/InlineDataFragmentTransform.js +104 -0
  139. package/lib/transforms/InlineFragmentsTransform.js +63 -0
  140. package/lib/transforms/MaskTransform.js +121 -0
  141. package/lib/transforms/MatchTransform.js +438 -0
  142. package/lib/transforms/ReactFlightComponentTransform.js +161 -0
  143. package/lib/transforms/RefetchableFragmentTransform.js +249 -0
  144. package/lib/transforms/RelayDirectiveTransform.js +85 -0
  145. package/lib/transforms/RequiredFieldTransform.js +373 -0
  146. package/lib/transforms/SkipClientExtensionsTransform.js +49 -0
  147. package/lib/transforms/SkipHandleFieldTransform.js +45 -0
  148. package/lib/transforms/SkipRedundantNodesTransform.js +255 -0
  149. package/lib/transforms/SkipSplitOperationTransform.js +32 -0
  150. package/lib/transforms/SkipUnreachableNodeTransform.js +158 -0
  151. package/lib/transforms/SkipUnusedVariablesTransform.js +74 -0
  152. package/lib/transforms/SplitModuleImportTransform.js +85 -0
  153. package/lib/transforms/TestOperationTransform.js +145 -0
  154. package/lib/transforms/TransformUtils.js +21 -0
  155. package/lib/transforms/ValidateGlobalVariablesTransform.js +91 -0
  156. package/lib/transforms/ValidateRequiredArgumentsTransform.js +118 -0
  157. package/lib/transforms/ValidateServerOnlyDirectivesTransform.js +111 -0
  158. package/lib/transforms/ValidateUnusedVariablesTransform.js +96 -0
  159. package/lib/transforms/query-generators/FetchableQueryGenerator.js +157 -0
  160. package/lib/transforms/query-generators/NodeQueryGenerator.js +166 -0
  161. package/lib/transforms/query-generators/QueryQueryGenerator.js +48 -0
  162. package/lib/transforms/query-generators/ViewerQueryGenerator.js +77 -0
  163. package/lib/transforms/query-generators/index.js +60 -0
  164. package/lib/transforms/query-generators/utils.js +92 -0
  165. package/lib/util/CodeMarker.js +80 -0
  166. package/lib/util/DefaultHandleKey.js +15 -0
  167. package/lib/util/RelayCompilerCache.js +98 -0
  168. package/lib/util/Rollout.js +40 -0
  169. package/lib/util/TimeReporter.js +83 -0
  170. package/lib/util/areEqualArgValues.js +135 -0
  171. package/lib/util/argumentContainsVariables.js +37 -0
  172. package/lib/util/dedupeJSONStringify.js +160 -0
  173. package/lib/util/generateAbstractTypeRefinementKey.js +24 -0
  174. package/lib/util/getDefinitionNodeHash.js +22 -0
  175. package/lib/util/getModuleName.js +32 -0
  176. package/lib/util/joinArgumentDefinitions.js +66 -0
  177. package/lib/util/md5.js +17 -0
  178. package/lib/util/murmurHash.js +86 -0
  179. package/lib/util/nullthrowsOSS.js +23 -0
  180. package/lib/util/orList.js +36 -0
  181. package/lib/util/partitionArray.js +35 -0
  182. package/package.json +42 -0
  183. package/relay-compiler.js +17 -0
  184. package/relay-compiler.min.js +22 -0
  185. package/reporters/ConsoleReporter.js.flow +81 -0
  186. package/reporters/MultiReporter.js.flow +43 -0
  187. package/reporters/Reporter.js.flow +19 -0
  188. package/runner/Artifacts.js.flow +219 -0
  189. package/runner/BufferedFilesystem.js.flow +194 -0
  190. package/runner/GraphQLASTNodeGroup.js.flow +176 -0
  191. package/runner/GraphQLASTUtils.js.flow +26 -0
  192. package/runner/GraphQLNodeMap.js.flow +55 -0
  193. package/runner/Sources.js.flow +228 -0
  194. package/runner/StrictMap.js.flow +96 -0
  195. package/runner/compileArtifacts.js.flow +76 -0
  196. package/runner/extractAST.js.flow +100 -0
  197. package/runner/getChangedNodeNames.js.flow +48 -0
  198. package/runner/getSchemaInstance.js.flow +36 -0
  199. package/runner/types.js.flow +37 -0
  200. package/transforms/ApplyFragmentArgumentTransform.js.flow +526 -0
  201. package/transforms/ClientExtensionsTransform.js.flow +226 -0
  202. package/transforms/ConnectionTransform.js.flow +859 -0
  203. package/transforms/DeclarativeConnectionMutationTransform.js.flow +250 -0
  204. package/transforms/DeferStreamTransform.js.flow +266 -0
  205. package/transforms/DisallowIdAsAlias.js.flow +48 -0
  206. package/transforms/DisallowTypenameOnRoot.js.flow +45 -0
  207. package/transforms/FieldHandleTransform.js.flow +81 -0
  208. package/transforms/FilterCompilerDirectivesTransform.js.flow +33 -0
  209. package/transforms/FilterDirectivesTransform.js.flow +45 -0
  210. package/transforms/FlattenTransform.js.flow +462 -0
  211. package/transforms/GenerateIDFieldTransform.js.flow +154 -0
  212. package/transforms/GenerateTypeNameTransform.js.flow +167 -0
  213. package/transforms/InlineDataFragmentTransform.js.flow +129 -0
  214. package/transforms/InlineFragmentsTransform.js.flow +73 -0
  215. package/transforms/MaskTransform.js.flow +130 -0
  216. package/transforms/MatchTransform.js.flow +593 -0
  217. package/transforms/ReactFlightComponentTransform.js.flow +198 -0
  218. package/transforms/RefetchableFragmentTransform.js.flow +272 -0
  219. package/transforms/RelayDirectiveTransform.js.flow +99 -0
  220. package/transforms/RequiredFieldTransform.js.flow +419 -0
  221. package/transforms/SkipClientExtensionsTransform.js.flow +57 -0
  222. package/transforms/SkipHandleFieldTransform.js.flow +45 -0
  223. package/transforms/SkipRedundantNodesTransform.js.flow +259 -0
  224. package/transforms/SkipSplitOperationTransform.js.flow +37 -0
  225. package/transforms/SkipUnreachableNodeTransform.js.flow +149 -0
  226. package/transforms/SkipUnusedVariablesTransform.js.flow +59 -0
  227. package/transforms/SplitModuleImportTransform.js.flow +101 -0
  228. package/transforms/TestOperationTransform.js.flow +143 -0
  229. package/transforms/TransformUtils.js.flow +26 -0
  230. package/transforms/ValidateGlobalVariablesTransform.js.flow +81 -0
  231. package/transforms/ValidateRequiredArgumentsTransform.js.flow +131 -0
  232. package/transforms/ValidateServerOnlyDirectivesTransform.js.flow +115 -0
  233. package/transforms/ValidateUnusedVariablesTransform.js.flow +89 -0
  234. package/transforms/query-generators/FetchableQueryGenerator.js.flow +189 -0
  235. package/transforms/query-generators/NodeQueryGenerator.js.flow +219 -0
  236. package/transforms/query-generators/QueryQueryGenerator.js.flow +57 -0
  237. package/transforms/query-generators/ViewerQueryGenerator.js.flow +97 -0
  238. package/transforms/query-generators/index.js.flow +90 -0
  239. package/transforms/query-generators/utils.js.flow +76 -0
  240. package/util/CodeMarker.js.flow +79 -0
  241. package/util/DefaultHandleKey.js.flow +17 -0
  242. package/util/RelayCompilerCache.js.flow +88 -0
  243. package/util/Rollout.js.flow +39 -0
  244. package/util/TimeReporter.js.flow +79 -0
  245. package/util/areEqualArgValues.js.flow +126 -0
  246. package/util/argumentContainsVariables.js.flow +38 -0
  247. package/util/dedupeJSONStringify.js.flow +152 -0
  248. package/util/generateAbstractTypeRefinementKey.js.flow +29 -0
  249. package/util/getDefinitionNodeHash.js.flow +25 -0
  250. package/util/getModuleName.js.flow +39 -0
  251. package/util/joinArgumentDefinitions.js.flow +105 -0
  252. package/util/md5.js.flow +22 -0
  253. package/util/murmurHash.js.flow +94 -0
  254. package/util/nullthrowsOSS.js.flow +25 -0
  255. package/util/orList.js.flow +37 -0
  256. package/util/partitionArray.js.flow +37 -0
@@ -0,0 +1,150 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ *
8
+ * @format
9
+ * @emails oncall+relay
10
+ */
11
+ // flowlint ambiguous-object-type:error
12
+ 'use strict';
13
+
14
+ var _asyncToGenerator = require("@babel/runtime/helpers/asyncToGenerator");
15
+
16
+ var childProcess = require('child_process');
17
+
18
+ var watchman = require('fb-watchman');
19
+
20
+ var MAX_ATTEMPT_LIMIT = 5;
21
+
22
+ function delay(delayMs) {
23
+ return new Promise(function (resolve) {
24
+ return setTimeout(resolve, delayMs);
25
+ });
26
+ }
27
+
28
+ var GraphQLWatchmanClient = /*#__PURE__*/function () {
29
+ GraphQLWatchmanClient.isAvailable = function isAvailable() {
30
+ return new Promise(function (resolve) {
31
+ // This command not only will verify that watchman CLI is available
32
+ // More than that `watchman version` is a command that runs on the server.
33
+ // And it can tell us that watchman is up and running
34
+ // Also `watchman version` check ``relative_root`` capability
35
+ // under the covers
36
+ var proc = childProcess.spawn('watchman', ['version']);
37
+ proc.on('error', function () {
38
+ resolve(false);
39
+ });
40
+ proc.on('close', function (code) {
41
+ resolve(code === 0);
42
+ });
43
+ });
44
+ };
45
+
46
+ function GraphQLWatchmanClient() {
47
+ var attemptLimit = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
48
+ this._client = new watchman.Client();
49
+ this._attemptLimit = Math.max(Math.min(MAX_ATTEMPT_LIMIT, attemptLimit), 0);
50
+ }
51
+
52
+ var _proto = GraphQLWatchmanClient.prototype;
53
+
54
+ _proto._command = function _command() {
55
+ var _this = this;
56
+
57
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
58
+ args[_key] = arguments[_key];
59
+ }
60
+
61
+ return new Promise(function (resolve, reject) {
62
+ _this._client.command(args, function (error, response) {
63
+ if (error) {
64
+ reject(error);
65
+ } else {
66
+ resolve(response);
67
+ }
68
+ });
69
+ });
70
+ };
71
+
72
+ _proto.command = /*#__PURE__*/function () {
73
+ var _command2 = _asyncToGenerator(function* () {
74
+ var attempt = 0;
75
+
76
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
77
+ args[_key2] = arguments[_key2];
78
+ }
79
+
80
+ while (true) {
81
+ try {
82
+ attempt++;
83
+ return yield this._command.apply(this, args);
84
+ } catch (error) {
85
+ if (attempt > this._attemptLimit) {
86
+ throw error;
87
+ }
88
+
89
+ yield delay(Math.pow(2, attempt) * 500);
90
+
91
+ this._client.end();
92
+
93
+ this._client = new watchman.Client();
94
+ }
95
+ }
96
+ });
97
+
98
+ function command() {
99
+ return _command2.apply(this, arguments);
100
+ }
101
+
102
+ return command;
103
+ }();
104
+
105
+ _proto.hasCapability = /*#__PURE__*/function () {
106
+ var _hasCapability = _asyncToGenerator(function* (capability) {
107
+ var resp = yield this.command('list-capabilities');
108
+ return resp.capabilities.includes(capability);
109
+ });
110
+
111
+ function hasCapability(_x) {
112
+ return _hasCapability.apply(this, arguments);
113
+ }
114
+
115
+ return hasCapability;
116
+ }();
117
+
118
+ _proto.watchProject = /*#__PURE__*/function () {
119
+ var _watchProject = _asyncToGenerator(function* (baseDir) {
120
+ var resp = yield this.command('watch-project', baseDir);
121
+
122
+ if ('warning' in resp) {
123
+ console.error('Warning:', resp.warning);
124
+ }
125
+
126
+ return {
127
+ root: resp.watch,
128
+ relativePath: resp.relative_path
129
+ };
130
+ });
131
+
132
+ function watchProject(_x2) {
133
+ return _watchProject.apply(this, arguments);
134
+ }
135
+
136
+ return watchProject;
137
+ }();
138
+
139
+ _proto.on = function on(event, callback) {
140
+ this._client.on(event, callback);
141
+ };
142
+
143
+ _proto.end = function end() {
144
+ this._client.end();
145
+ };
146
+
147
+ return GraphQLWatchmanClient;
148
+ }();
149
+
150
+ module.exports = GraphQLWatchmanClient;
package/lib/core/IR.js ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ *
8
+ * @format
9
+ */
10
+ // flowlint ambiguous-object-type:error
11
+ 'use strict';
@@ -0,0 +1,389 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ *
8
+ * @format
9
+ */
10
+ // flowlint ambiguous-object-type:error
11
+ 'use strict';
12
+
13
+ var invariant = require('invariant');
14
+
15
+ var _require = require('../util/DefaultHandleKey'),
16
+ DEFAULT_HANDLE_KEY = _require.DEFAULT_HANDLE_KEY;
17
+
18
+ var INDENT = ' ';
19
+ /**
20
+ * Converts an IR node into a GraphQL string. Custom Relay
21
+ * extensions (directives) are not supported; to print fragments with
22
+ * variables or fragment spreads with arguments, transform the node
23
+ * prior to printing.
24
+ */
25
+
26
+ function print(schema, node) {
27
+ switch (node.kind) {
28
+ case 'Fragment':
29
+ return "fragment ".concat(node.name, " on ").concat(schema.getTypeString(node.type)) + printFragmentArgumentDefinitions(schema, node.argumentDefinitions) + printDirectives(schema, node.directives) + printSelections(schema, node, '', {}) + '\n';
30
+
31
+ case 'Root':
32
+ return "".concat(node.operation, " ").concat(node.name) + printArgumentDefinitions(schema, node.argumentDefinitions) + printDirectives(schema, node.directives) + printSelections(schema, node, '', {}) + '\n';
33
+
34
+ case 'SplitOperation':
35
+ return "SplitOperation ".concat(node.name, " on ").concat(schema.getTypeString(node.type)) + printSelections(schema, node, '', {}) + '\n';
36
+
37
+ default:
38
+ node;
39
+ !false ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Unsupported IR node `%s`.', node.kind) : invariant(false) : void 0;
40
+ }
41
+ }
42
+
43
+ function printSelections(schema, node, indent, options) {
44
+ var selections = node.selections;
45
+
46
+ if (selections == null) {
47
+ return '';
48
+ }
49
+
50
+ var printed = selections.map(function (selection) {
51
+ return printSelection(schema, selection, indent, options);
52
+ });
53
+ return printed.length ? " {\n".concat(indent + INDENT).concat(printed.join('\n' + indent + INDENT), "\n").concat(indent).concat((options === null || options === void 0 ? void 0 : options.isClientExtension) === true ? '# ' : '', "}") : '';
54
+ }
55
+ /**
56
+ * Prints a field without subselections.
57
+ */
58
+
59
+
60
+ function printField(schema, field, options) {
61
+ var _options$parentDirect;
62
+
63
+ var parentDirectives = (_options$parentDirect = options === null || options === void 0 ? void 0 : options.parentDirectives) !== null && _options$parentDirect !== void 0 ? _options$parentDirect : '';
64
+ var isClientExtension = (options === null || options === void 0 ? void 0 : options.isClientExtension) === true;
65
+ return (isClientExtension ? '# ' : '') + (field.alias === field.name ? field.name : field.alias + ': ' + field.name) + printArguments(schema, field.args) + parentDirectives + printDirectives(schema, field.directives) + printHandles(schema, field);
66
+ }
67
+
68
+ function printSelection(schema, selection, indent, options) {
69
+ var _options$parentDirect2;
70
+
71
+ var str;
72
+ var parentDirectives = (_options$parentDirect2 = options === null || options === void 0 ? void 0 : options.parentDirectives) !== null && _options$parentDirect2 !== void 0 ? _options$parentDirect2 : '';
73
+ var isClientExtension = (options === null || options === void 0 ? void 0 : options.isClientExtension) === true;
74
+
75
+ if (selection.kind === 'LinkedField') {
76
+ str = printField(schema, selection, {
77
+ parentDirectives: parentDirectives,
78
+ isClientExtension: isClientExtension
79
+ });
80
+ str += printSelections(schema, selection, indent + INDENT, {
81
+ isClientExtension: isClientExtension
82
+ });
83
+ } else if (selection.kind === 'ModuleImport') {
84
+ str = selection.selections.map(function (matchSelection) {
85
+ return printSelection(schema, matchSelection, indent, {
86
+ parentDirectives: parentDirectives,
87
+ isClientExtension: isClientExtension
88
+ });
89
+ }).join('\n' + indent + INDENT);
90
+ } else if (selection.kind === 'ScalarField') {
91
+ str = printField(schema, selection, {
92
+ parentDirectives: parentDirectives,
93
+ isClientExtension: isClientExtension
94
+ });
95
+ } else if (selection.kind === 'InlineFragment') {
96
+ str = '';
97
+
98
+ if (isClientExtension) {
99
+ str += '# ';
100
+ }
101
+
102
+ str += '... on ' + schema.getTypeString(selection.typeCondition);
103
+ str += parentDirectives;
104
+ str += printDirectives(schema, selection.directives);
105
+ str += printSelections(schema, selection, indent + INDENT, {
106
+ isClientExtension: isClientExtension
107
+ });
108
+ } else if (selection.kind === 'FragmentSpread') {
109
+ str = '';
110
+
111
+ if (isClientExtension) {
112
+ str += '# ';
113
+ }
114
+
115
+ str += '...' + selection.name;
116
+ str += parentDirectives;
117
+ str += printFragmentArguments(schema, selection.args);
118
+ str += printDirectives(schema, selection.directives);
119
+ } else if (selection.kind === 'InlineDataFragmentSpread') {
120
+ str = "# ".concat(selection.name, " @inline") + "\n".concat(indent).concat(INDENT, "...") + parentDirectives + printSelections(schema, selection, indent + INDENT, {});
121
+ } else if (selection.kind === 'Condition') {
122
+ var value = printValue(schema, selection.condition, null); // For Flow
123
+
124
+ !(value != null) ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Expected a variable for condition, got a literal `null`.') : invariant(false) : void 0;
125
+ var condStr = selection.passingValue ? ' @include' : ' @skip';
126
+ condStr += '(if: ' + value + ')';
127
+ condStr += parentDirectives; // For multi-selection conditions, pushes the condition down to each
128
+
129
+ var subSelections = selection.selections.map(function (sel) {
130
+ return printSelection(schema, sel, indent, {
131
+ parentDirectives: condStr,
132
+ isClientExtension: isClientExtension
133
+ });
134
+ });
135
+ str = subSelections.join('\n' + indent + INDENT);
136
+ } else if (selection.kind === 'Stream') {
137
+ var streamStr = parentDirectives;
138
+ streamStr += " @stream(label: \"".concat(selection.label, "\"");
139
+
140
+ if (selection["if"] !== null) {
141
+ var _printValue;
142
+
143
+ streamStr += ", if: ".concat((_printValue = printValue(schema, selection["if"], null)) !== null && _printValue !== void 0 ? _printValue : '');
144
+ }
145
+
146
+ if (selection.initialCount !== null) {
147
+ var _printValue2;
148
+
149
+ streamStr += ", initial_count: ".concat((_printValue2 = printValue(schema, selection.initialCount, null)) !== null && _printValue2 !== void 0 ? _printValue2 : '');
150
+ }
151
+
152
+ if (selection.useCustomizedBatch !== null) {
153
+ var _printValue3;
154
+
155
+ streamStr += ", use_customized_batch: ".concat((_printValue3 = printValue(schema, selection.useCustomizedBatch, null)) !== null && _printValue3 !== void 0 ? _printValue3 : 'false');
156
+ }
157
+
158
+ streamStr += ')';
159
+
160
+ var _subSelections = selection.selections.map(function (sel) {
161
+ return printSelection(schema, sel, indent, {
162
+ parentDirectives: streamStr,
163
+ isClientExtension: isClientExtension
164
+ });
165
+ });
166
+
167
+ str = _subSelections.join('\n' + INDENT);
168
+ } else if (selection.kind === 'Defer') {
169
+ var deferStr = parentDirectives;
170
+ deferStr += " @defer(label: \"".concat(selection.label, "\"");
171
+
172
+ if (selection["if"] !== null) {
173
+ var _printValue4;
174
+
175
+ deferStr += ", if: ".concat((_printValue4 = printValue(schema, selection["if"], null)) !== null && _printValue4 !== void 0 ? _printValue4 : '');
176
+ }
177
+
178
+ deferStr += ')';
179
+
180
+ if (selection.selections.every(function (subSelection) {
181
+ return subSelection.kind === 'InlineFragment' || subSelection.kind === 'FragmentSpread';
182
+ })) {
183
+ var _subSelections2 = selection.selections.map(function (sel) {
184
+ return printSelection(schema, sel, indent, {
185
+ parentDirectives: deferStr,
186
+ isClientExtension: isClientExtension
187
+ });
188
+ });
189
+
190
+ str = _subSelections2.join('\n' + INDENT);
191
+ } else {
192
+ str = '...' + deferStr;
193
+ str += printSelections(schema, selection, indent + INDENT, {
194
+ isClientExtension: isClientExtension
195
+ });
196
+ }
197
+ } else if (selection.kind === 'ClientExtension') {
198
+ !(isClientExtension === false) ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Did not expect to encounter a ClientExtension node ' + 'as a descendant of another ClientExtension node.') : invariant(false) : void 0;
199
+ str = '# Client-only selections:\n' + indent + INDENT + selection.selections.map(function (sel) {
200
+ return printSelection(schema, sel, indent, {
201
+ parentDirectives: parentDirectives,
202
+ isClientExtension: true
203
+ });
204
+ }).join('\n' + indent + INDENT);
205
+ } else {
206
+ selection;
207
+ !false ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Unknown selection kind `%s`.', selection.kind) : invariant(false) : void 0;
208
+ }
209
+
210
+ return str;
211
+ }
212
+
213
+ function printArgumentDefinitions(schema, argumentDefinitions) {
214
+ var printed = argumentDefinitions.map(function (def) {
215
+ var str = "$".concat(def.name, ": ").concat(schema.getTypeString(def.type));
216
+
217
+ if (def.defaultValue != null) {
218
+ str += ' = ' + printLiteral(schema, def.defaultValue, def.type);
219
+ }
220
+
221
+ return str;
222
+ });
223
+ return printed.length ? "(\n".concat(INDENT).concat(printed.join('\n' + INDENT), "\n)") : '';
224
+ }
225
+
226
+ function printFragmentArgumentDefinitions(schema, argumentDefinitions) {
227
+ var printed;
228
+ argumentDefinitions.forEach(function (def) {
229
+ if (def.kind !== 'LocalArgumentDefinition') {
230
+ return;
231
+ }
232
+
233
+ printed = printed || [];
234
+ var str = "".concat(def.name, ": {type: \"").concat(schema.getTypeString(def.type), "\"");
235
+
236
+ if (def.defaultValue != null) {
237
+ str += ", defaultValue: ".concat(printLiteral(schema, def.defaultValue, def.type));
238
+ }
239
+
240
+ str += '}'; // $FlowFixMe[incompatible-use]
241
+
242
+ printed.push(str);
243
+ });
244
+ return printed && printed.length ? " @argumentDefinitions(\n".concat(INDENT).concat(printed.join('\n' + INDENT), "\n)") : '';
245
+ }
246
+
247
+ function printHandles(schema, field) {
248
+ if (!field.handles) {
249
+ return '';
250
+ }
251
+
252
+ var printed = field.handles.map(function (handle) {
253
+ // For backward compatibility.
254
+ var key = handle.key === DEFAULT_HANDLE_KEY ? '' : ", key: \"".concat(handle.key, "\"");
255
+ var filters = handle.filters == null ? '' : ", filters: ".concat(JSON.stringify(Array.from(handle.filters).sort()));
256
+ var handleArgs = handle.handleArgs == null ? '' : ", handleArgs: ".concat(printArguments(schema, handle.handleArgs));
257
+ return "@__clientField(handle: \"".concat(handle.name, "\"").concat(key).concat(filters).concat(handleArgs, ")");
258
+ });
259
+ return printed.length ? ' ' + printed.join(' ') : '';
260
+ }
261
+
262
+ function printDirectives(schema, directives) {
263
+ var printed = directives.map(function (directive) {
264
+ return '@' + directive.name + printArguments(schema, directive.args);
265
+ });
266
+ return printed.length ? ' ' + printed.join(' ') : '';
267
+ }
268
+
269
+ function printFragmentArguments(schema, args) {
270
+ var printedArgs = printArguments(schema, args);
271
+
272
+ if (!printedArgs.length) {
273
+ return '';
274
+ }
275
+
276
+ return " @arguments".concat(printedArgs);
277
+ }
278
+
279
+ function printArguments(schema, args) {
280
+ var printed = [];
281
+ args.forEach(function (arg) {
282
+ var printedValue = printValue(schema, arg.value, arg.type);
283
+
284
+ if (printedValue != null) {
285
+ printed.push(arg.name + ': ' + printedValue);
286
+ }
287
+ });
288
+ return printed.length ? '(' + printed.join(', ') + ')' : '';
289
+ }
290
+
291
+ function printValue(schema, value, type) {
292
+ if (type != null && schema.isNonNull(type)) {
293
+ type = schema.getNullableType(type);
294
+ }
295
+
296
+ if (value.kind === 'Variable') {
297
+ return '$' + value.variableName;
298
+ } else if (value.kind === 'ObjectValue') {
299
+ var inputType = type != null ? schema.asInputObjectType(type) : null;
300
+ var pairs = value.fields.map(function (field) {
301
+ var fieldConfig = inputType != null ? schema.hasField(inputType, field.name) ? schema.getFieldConfig(schema.expectField(inputType, field.name)) : null : null;
302
+ var innerValue = printValue(schema, field.value, fieldConfig === null || fieldConfig === void 0 ? void 0 : fieldConfig.type);
303
+ return innerValue == null ? null : field.name + ': ' + innerValue;
304
+ }).filter(Boolean);
305
+ return '{' + pairs.join(', ') + '}';
306
+ } else if (value.kind === 'ListValue') {
307
+ !(type && schema.isList(type)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'GraphQLIRPrinter: Need a type in order to print arrays.') : invariant(false) : void 0;
308
+ var innerType = schema.getListItemType(type);
309
+ return "[".concat(value.items.map(function (i) {
310
+ return printValue(schema, i, innerType);
311
+ }).join(', '), "]");
312
+ } else if (value.value != null) {
313
+ return printLiteral(schema, value.value, type);
314
+ } else {
315
+ return null;
316
+ }
317
+ }
318
+
319
+ function printLiteral(schema, value, type) {
320
+ if (value == null) {
321
+ var _JSON$stringify;
322
+
323
+ return (_JSON$stringify = JSON.stringify(value)) !== null && _JSON$stringify !== void 0 ? _JSON$stringify : 'null';
324
+ }
325
+
326
+ if (type != null && schema.isNonNull(type)) {
327
+ type = schema.getNullableType(type);
328
+ }
329
+
330
+ if (type && schema.isEnum(type)) {
331
+ var _JSON$stringify2;
332
+
333
+ var result = schema.serialize(schema.assertEnumType(type), value);
334
+
335
+ if (result == null && typeof value === 'string') {
336
+ // For backwards compatibility, print invalid input values as-is. This
337
+ // can occur with literals defined as an @argumentDefinitions
338
+ // defaultValue.
339
+ result = value;
340
+ }
341
+
342
+ !(typeof result === 'string') ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Expected value of type %s to be a valid enum value, got `%s`.', schema.getTypeString(type), (_JSON$stringify2 = JSON.stringify(value)) !== null && _JSON$stringify2 !== void 0 ? _JSON$stringify2 : 'null') : invariant(false) : void 0;
343
+ return result;
344
+ } else if (type && (schema.isId(type) || schema.isInt(type))) {
345
+ var _JSON$stringify3;
346
+
347
+ return (_JSON$stringify3 = JSON.stringify(value)) !== null && _JSON$stringify3 !== void 0 ? _JSON$stringify3 : '';
348
+ } else if (type && schema.isScalar(type)) {
349
+ var _JSON$stringify4;
350
+
351
+ var _result = schema.serialize(schema.assertScalarType(type), value);
352
+
353
+ return (_JSON$stringify4 = JSON.stringify(_result)) !== null && _JSON$stringify4 !== void 0 ? _JSON$stringify4 : '';
354
+ } else if (Array.isArray(value)) {
355
+ !(type && schema.isList(type)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Need a type in order to print arrays.') : invariant(false) : void 0;
356
+ var itemType = schema.getListItemType(type);
357
+ return '[' + value.map(function (item) {
358
+ return printLiteral(schema, item, itemType);
359
+ }).join(', ') + ']';
360
+ } else if (type && schema.isList(type) && value != null) {
361
+ // Not an array, but still a list. Treat as list-of-one as per spec 3.1.7:
362
+ // http://facebook.github.io/graphql/October2016/#sec-Lists
363
+ return printLiteral(schema, value, schema.getListItemType(type));
364
+ } else if (typeof value === 'object' && value != null) {
365
+ var fields = [];
366
+ !(type && schema.isInputObject(type)) ? process.env.NODE_ENV !== "production" ? invariant(false, 'IRPrinter: Need an InputObject type to print objects.') : invariant(false) : void 0;
367
+ var inputType = schema.assertInputObjectType(type);
368
+
369
+ for (var key in value) {
370
+ if (value.hasOwnProperty(key)) {
371
+ var fieldConfig = schema.getFieldConfig(schema.expectField(inputType, key));
372
+ fields.push(key + ': ' + printLiteral(schema, value[key], fieldConfig.type));
373
+ }
374
+ }
375
+
376
+ return '{' + fields.join(', ') + '}';
377
+ } else {
378
+ var _JSON$stringify5;
379
+
380
+ return (_JSON$stringify5 = JSON.stringify(value)) !== null && _JSON$stringify5 !== void 0 ? _JSON$stringify5 : 'null';
381
+ }
382
+ }
383
+
384
+ module.exports = {
385
+ print: print,
386
+ printField: printField,
387
+ printArguments: printArguments,
388
+ printDirectives: printDirectives
389
+ };