graphiql-rails 1.4.5 → 1.4.6
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/graphiql/rails/application.js +3 -3
- data/app/assets/javascripts/graphiql/rails/{graphiql-0.11.5.js → graphiql-0.11.9.js} +240 -190
- data/app/assets/javascripts/graphiql/rails/react-16.0.0.js +1698 -0
- data/app/assets/javascripts/graphiql/rails/react-dom-16.0.0.js +17221 -0
- data/app/assets/stylesheets/graphiql/rails/application.css +1 -1
- data/app/assets/stylesheets/graphiql/rails/{graphiql-0.11.5.css → graphiql-0.11.9.css} +2 -2
- data/lib/graphiql/rails/version.rb +1 -1
- metadata +6 -6
- data/app/assets/javascripts/graphiql/rails/react-15.6.2.js +0 -4268
- data/app/assets/javascripts/graphiql/rails/react-dom-15.6.2.js +0 -18853
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 265c69aeac5760feb01cc6e88fd3ab16c8a5d027
|
4
|
+
data.tar.gz: b2a790fdedd1778d54fc462ce63e6e8548058c08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4799672d35107a5ddd4d795d78df70840817b459e28b19847432295c2736d381107325debca1b5e1d33b5abdfbbf12610f0496e5c62a0c0764864d23a5eab2b9
|
7
|
+
data.tar.gz: ddde9520dc2f11179aab584fea7c59f78b3a49323f0fcc3f8113f038e3437e00471070767beb223f650415313f11dc84cb2b4bcfa6432faf0ba60ea945c29671
|
@@ -1,4 +1,4 @@
|
|
1
|
-
//= require ./react-
|
2
|
-
//= require ./react-dom-
|
1
|
+
//= require ./react-16.0.0
|
2
|
+
//= require ./react-dom-16.0.0
|
3
3
|
//= require ./fetch-0.10.1
|
4
|
-
//= require ./graphiql-0.11.
|
4
|
+
//= require ./graphiql-0.11.9
|
@@ -256,7 +256,7 @@ DocExplorer.propTypes = {
|
|
256
256
|
schema: _propTypes2.default.instanceOf(_graphql.GraphQLSchema)
|
257
257
|
};
|
258
258
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
259
|
-
},{"./DocExplorer/FieldDoc":
|
259
|
+
},{"./DocExplorer/FieldDoc":4,"./DocExplorer/SchemaDoc":6,"./DocExplorer/SearchBox":7,"./DocExplorer/SearchResults":8,"./DocExplorer/TypeDoc":9,"graphql":94,"prop-types":174}],2:[function(require,module,exports){
|
260
260
|
(function (global){
|
261
261
|
'use strict';
|
262
262
|
|
@@ -273,12 +273,14 @@ var _propTypes = require('prop-types');
|
|
273
273
|
|
274
274
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
275
275
|
|
276
|
-
var _graphql = require('graphql');
|
277
|
-
|
278
276
|
var _TypeLink = require('./TypeLink');
|
279
277
|
|
280
278
|
var _TypeLink2 = _interopRequireDefault(_TypeLink);
|
281
279
|
|
280
|
+
var _DefaultValue = require('./DefaultValue');
|
281
|
+
|
282
|
+
var _DefaultValue2 = _interopRequireDefault(_DefaultValue);
|
283
|
+
|
282
284
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
283
285
|
|
284
286
|
/**
|
@@ -304,26 +306,69 @@ function Argument(_ref) {
|
|
304
306
|
),
|
305
307
|
': ',
|
306
308
|
_react2.default.createElement(_TypeLink2.default, { type: arg.type, onClick: onClickType }),
|
307
|
-
|
309
|
+
showDefaultValue !== false && _react2.default.createElement(_DefaultValue2.default, { field: arg })
|
310
|
+
);
|
311
|
+
}
|
312
|
+
|
313
|
+
Argument.propTypes = {
|
314
|
+
arg: _propTypes2.default.object.isRequired,
|
315
|
+
onClickType: _propTypes2.default.func.isRequired,
|
316
|
+
showDefaultValue: _propTypes2.default.bool
|
317
|
+
};
|
318
|
+
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
319
|
+
},{"./DefaultValue":3,"./TypeLink":10,"prop-types":174}],3:[function(require,module,exports){
|
320
|
+
(function (global){
|
321
|
+
'use strict';
|
322
|
+
|
323
|
+
Object.defineProperty(exports, "__esModule", {
|
324
|
+
value: true
|
325
|
+
});
|
326
|
+
exports.default = DefaultValue;
|
327
|
+
|
328
|
+
var _react = (typeof window !== "undefined" ? window['React'] : typeof global !== "undefined" ? global['React'] : null);
|
329
|
+
|
330
|
+
var _react2 = _interopRequireDefault(_react);
|
331
|
+
|
332
|
+
var _propTypes = require('prop-types');
|
333
|
+
|
334
|
+
var _propTypes2 = _interopRequireDefault(_propTypes);
|
335
|
+
|
336
|
+
var _graphql = require('graphql');
|
337
|
+
|
338
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
339
|
+
|
340
|
+
function DefaultValue(_ref) {
|
341
|
+
var field = _ref.field;
|
342
|
+
var type = field.type,
|
343
|
+
defaultValue = field.defaultValue;
|
344
|
+
|
345
|
+
if (defaultValue !== undefined) {
|
346
|
+
return _react2.default.createElement(
|
308
347
|
'span',
|
309
348
|
null,
|
310
349
|
' = ',
|
311
350
|
_react2.default.createElement(
|
312
351
|
'span',
|
313
352
|
{ className: 'arg-default-value' },
|
314
|
-
(0, _graphql.print)((0, _graphql.astFromValue)(
|
353
|
+
(0, _graphql.print)((0, _graphql.astFromValue)(defaultValue, type))
|
315
354
|
)
|
316
|
-
)
|
317
|
-
|
318
|
-
}
|
355
|
+
);
|
356
|
+
}
|
319
357
|
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
358
|
+
return null;
|
359
|
+
} /**
|
360
|
+
* Copyright (c) Facebook, Inc.
|
361
|
+
* All rights reserved.
|
362
|
+
*
|
363
|
+
* This source code is licensed under the license found in the
|
364
|
+
* LICENSE file in the root directory of this source tree.
|
365
|
+
*/
|
366
|
+
|
367
|
+
DefaultValue.propTypes = {
|
368
|
+
field: _propTypes2.default.object.isRequired
|
324
369
|
};
|
325
370
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
326
|
-
},{"
|
371
|
+
},{"graphql":94,"prop-types":174}],4:[function(require,module,exports){
|
327
372
|
(function (global){
|
328
373
|
'use strict';
|
329
374
|
|
@@ -451,7 +496,7 @@ FieldDoc.propTypes = {
|
|
451
496
|
};
|
452
497
|
exports.default = FieldDoc;
|
453
498
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
454
|
-
},{"./Argument":2,"./MarkdownContent":
|
499
|
+
},{"./Argument":2,"./MarkdownContent":5,"./TypeLink":10,"prop-types":174}],5:[function(require,module,exports){
|
455
500
|
(function (global){
|
456
501
|
'use strict';
|
457
502
|
|
@@ -526,7 +571,7 @@ MarkdownContent.propTypes = {
|
|
526
571
|
};
|
527
572
|
exports.default = MarkdownContent;
|
528
573
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
529
|
-
},{"marked":
|
574
|
+
},{"marked":169,"prop-types":174}],6:[function(require,module,exports){
|
530
575
|
(function (global){
|
531
576
|
'use strict';
|
532
577
|
|
@@ -654,7 +699,7 @@ SchemaDoc.propTypes = {
|
|
654
699
|
};
|
655
700
|
exports.default = SchemaDoc;
|
656
701
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
657
|
-
},{"./MarkdownContent":
|
702
|
+
},{"./MarkdownContent":5,"./TypeLink":10,"prop-types":174}],7:[function(require,module,exports){
|
658
703
|
(function (global){
|
659
704
|
'use strict';
|
660
705
|
|
@@ -745,7 +790,7 @@ SearchBox.propTypes = {
|
|
745
790
|
};
|
746
791
|
exports.default = SearchBox;
|
747
792
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
748
|
-
},{"../../utility/debounce":
|
793
|
+
},{"../../utility/debounce":26,"prop-types":174}],8:[function(require,module,exports){
|
749
794
|
(function (global){
|
750
795
|
'use strict';
|
751
796
|
|
@@ -980,7 +1025,7 @@ function isMatch(sourceText, searchValue) {
|
|
980
1025
|
}
|
981
1026
|
}
|
982
1027
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
983
|
-
},{"./Argument":2,"./TypeLink":
|
1028
|
+
},{"./Argument":2,"./TypeLink":10,"prop-types":174}],9:[function(require,module,exports){
|
984
1029
|
(function (global){
|
985
1030
|
'use strict';
|
986
1031
|
|
@@ -1012,6 +1057,10 @@ var _TypeLink = require('./TypeLink');
|
|
1012
1057
|
|
1013
1058
|
var _TypeLink2 = _interopRequireDefault(_TypeLink);
|
1014
1059
|
|
1060
|
+
var _DefaultValue = require('./DefaultValue');
|
1061
|
+
|
1062
|
+
var _DefaultValue2 = _interopRequireDefault(_DefaultValue);
|
1063
|
+
|
1015
1064
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
1016
1065
|
|
1017
1066
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -1248,6 +1297,7 @@ function Field(_ref) {
|
|
1248
1297
|
), ')'],
|
1249
1298
|
': ',
|
1250
1299
|
_react2.default.createElement(_TypeLink2.default, { type: field.type, onClick: onClickType }),
|
1300
|
+
_react2.default.createElement(_DefaultValue2.default, { field: field }),
|
1251
1301
|
field.description && _react2.default.createElement(
|
1252
1302
|
'p',
|
1253
1303
|
{ className: 'field-short-description' },
|
@@ -1293,7 +1343,7 @@ EnumValue.propTypes = {
|
|
1293
1343
|
value: _propTypes2.default.object
|
1294
1344
|
};
|
1295
1345
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
1296
|
-
},{"./Argument":2,"./MarkdownContent":
|
1346
|
+
},{"./Argument":2,"./DefaultValue":3,"./MarkdownContent":5,"./TypeLink":10,"graphql":94,"prop-types":174}],10:[function(require,module,exports){
|
1297
1347
|
(function (global){
|
1298
1348
|
'use strict';
|
1299
1349
|
|
@@ -1385,7 +1435,7 @@ function renderType(type, _onClick) {
|
|
1385
1435
|
);
|
1386
1436
|
}
|
1387
1437
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
1388
|
-
},{"graphql":
|
1438
|
+
},{"graphql":94,"prop-types":174}],11:[function(require,module,exports){
|
1389
1439
|
(function (global){
|
1390
1440
|
'use strict';
|
1391
1441
|
|
@@ -1558,7 +1608,7 @@ ExecuteButton.propTypes = {
|
|
1558
1608
|
operations: _propTypes2.default.array
|
1559
1609
|
};
|
1560
1610
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
1561
|
-
},{"prop-types":
|
1611
|
+
},{"prop-types":174}],12:[function(require,module,exports){
|
1562
1612
|
(function (global){
|
1563
1613
|
'use strict';
|
1564
1614
|
|
@@ -2697,7 +2747,7 @@ function isObservable(value) {
|
|
2697
2747
|
return (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && typeof value.subscribe === 'function';
|
2698
2748
|
}
|
2699
2749
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
2700
|
-
},{"../utility/CodeMirrorSizer":
|
2750
|
+
},{"../utility/CodeMirrorSizer":23,"../utility/StorageAPI":25,"../utility/debounce":26,"../utility/elementPosition":27,"../utility/fillLeafs":28,"../utility/find":29,"../utility/getQueryFacts":30,"../utility/getSelectedOperationName":31,"../utility/introspectionQueries":32,"./DocExplorer":1,"./ExecuteButton":11,"./QueryEditor":14,"./QueryHistory":15,"./ResultViewer":16,"./ToolbarButton":17,"./ToolbarGroup":18,"./ToolbarMenu":19,"./ToolbarSelect":20,"./VariableEditor":21,"graphql":94,"prop-types":174}],13:[function(require,module,exports){
|
2701
2751
|
(function (global){
|
2702
2752
|
'use strict';
|
2703
2753
|
|
@@ -2815,7 +2865,7 @@ HistoryQuery.propTypes = {
|
|
2815
2865
|
};
|
2816
2866
|
exports.default = HistoryQuery;
|
2817
2867
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
2818
|
-
},{"prop-types":
|
2868
|
+
},{"prop-types":174}],14:[function(require,module,exports){
|
2819
2869
|
(function (global){
|
2820
2870
|
'use strict';
|
2821
2871
|
|
@@ -3109,7 +3159,7 @@ QueryEditor.propTypes = {
|
|
3109
3159
|
schema: _propTypes2.default.instanceOf(_graphql.GraphQLSchema),
|
3110
3160
|
value: _propTypes2.default.string,
|
3111
3161
|
onEdit: _propTypes2.default.func,
|
3112
|
-
readOnly: _propTypes2.default.
|
3162
|
+
readOnly: _propTypes2.default.bool,
|
3113
3163
|
onHintInformationRender: _propTypes2.default.func,
|
3114
3164
|
onClickReference: _propTypes2.default.func,
|
3115
3165
|
onPrettifyQuery: _propTypes2.default.func,
|
@@ -3117,7 +3167,7 @@ QueryEditor.propTypes = {
|
|
3117
3167
|
editorTheme: _propTypes2.default.string
|
3118
3168
|
};
|
3119
3169
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3120
|
-
},{"../utility/normalizeWhitespace":
|
3170
|
+
},{"../utility/normalizeWhitespace":33,"../utility/onHasCompletion":34,"codemirror":65,"codemirror-graphql/hint":36,"codemirror-graphql/info":37,"codemirror-graphql/jump":38,"codemirror-graphql/lint":39,"codemirror-graphql/mode":40,"codemirror/addon/comment/comment":52,"codemirror/addon/dialog/dialog":53,"codemirror/addon/edit/closebrackets":54,"codemirror/addon/edit/matchbrackets":55,"codemirror/addon/fold/brace-fold":56,"codemirror/addon/fold/foldgutter":58,"codemirror/addon/hint/show-hint":59,"codemirror/addon/lint/lint":60,"codemirror/addon/search/jump-to-line":61,"codemirror/addon/search/search":62,"codemirror/addon/search/searchcursor":63,"codemirror/keymap/sublime":64,"graphql":94,"marked":169,"prop-types":174}],15:[function(require,module,exports){
|
3121
3171
|
(function (global){
|
3122
3172
|
'use strict';
|
3123
3173
|
|
@@ -3295,7 +3345,7 @@ var _initialiseProps = function _initialiseProps() {
|
|
3295
3345
|
};
|
3296
3346
|
};
|
3297
3347
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3298
|
-
},{"../utility/QueryStore":
|
3348
|
+
},{"../utility/QueryStore":24,"./HistoryQuery":13,"graphql":94,"prop-types":174}],16:[function(require,module,exports){
|
3299
3349
|
(function (global){
|
3300
3350
|
'use strict';
|
3301
3351
|
|
@@ -3462,7 +3512,7 @@ ResultViewer.propTypes = {
|
|
3462
3512
|
ResultsTooltip: _propTypes2.default.any
|
3463
3513
|
};
|
3464
3514
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3465
|
-
},{"codemirror":
|
3515
|
+
},{"codemirror":65,"codemirror-graphql/results/mode":41,"codemirror-graphql/utils/info-addon":46,"codemirror/addon/dialog/dialog":53,"codemirror/addon/fold/brace-fold":56,"codemirror/addon/fold/foldgutter":58,"codemirror/addon/search/jump-to-line":61,"codemirror/addon/search/search":62,"codemirror/addon/search/searchcursor":63,"codemirror/keymap/sublime":64,"prop-types":174}],17:[function(require,module,exports){
|
3466
3516
|
(function (global){
|
3467
3517
|
'use strict';
|
3468
3518
|
|
@@ -3553,7 +3603,7 @@ function preventDefault(e) {
|
|
3553
3603
|
e.preventDefault();
|
3554
3604
|
}
|
3555
3605
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3556
|
-
},{"prop-types":
|
3606
|
+
},{"prop-types":174}],18:[function(require,module,exports){
|
3557
3607
|
(function (global){
|
3558
3608
|
"use strict";
|
3559
3609
|
|
@@ -3589,7 +3639,7 @@ function ToolbarGroup(_ref) {
|
|
3589
3639
|
* LICENSE file in the root directory of this source tree.
|
3590
3640
|
*/
|
3591
3641
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3592
|
-
},{}],
|
3642
|
+
},{}],19:[function(require,module,exports){
|
3593
3643
|
(function (global){
|
3594
3644
|
'use strict';
|
3595
3645
|
|
@@ -3746,7 +3796,7 @@ function preventDefault(e) {
|
|
3746
3796
|
e.preventDefault();
|
3747
3797
|
}
|
3748
3798
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3749
|
-
},{"prop-types":
|
3799
|
+
},{"prop-types":174}],20:[function(require,module,exports){
|
3750
3800
|
(function (global){
|
3751
3801
|
'use strict';
|
3752
3802
|
|
@@ -3922,7 +3972,7 @@ function preventDefault(e) {
|
|
3922
3972
|
e.preventDefault();
|
3923
3973
|
}
|
3924
3974
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
3925
|
-
},{"prop-types":
|
3975
|
+
},{"prop-types":174}],21:[function(require,module,exports){
|
3926
3976
|
(function (global){
|
3927
3977
|
'use strict';
|
3928
3978
|
|
@@ -4171,14 +4221,14 @@ VariableEditor.propTypes = {
|
|
4171
4221
|
variableToType: _propTypes2.default.object,
|
4172
4222
|
value: _propTypes2.default.string,
|
4173
4223
|
onEdit: _propTypes2.default.func,
|
4174
|
-
readOnly: _propTypes2.default.
|
4224
|
+
readOnly: _propTypes2.default.bool,
|
4175
4225
|
onHintInformationRender: _propTypes2.default.func,
|
4176
4226
|
onPrettifyQuery: _propTypes2.default.func,
|
4177
4227
|
onRunQuery: _propTypes2.default.func,
|
4178
4228
|
editorTheme: _propTypes2.default.string
|
4179
4229
|
};
|
4180
4230
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
4181
|
-
},{"../utility/onHasCompletion":
|
4231
|
+
},{"../utility/onHasCompletion":34,"codemirror":65,"codemirror-graphql/variables/hint":49,"codemirror-graphql/variables/lint":50,"codemirror-graphql/variables/mode":51,"codemirror/addon/dialog/dialog":53,"codemirror/addon/edit/closebrackets":54,"codemirror/addon/edit/matchbrackets":55,"codemirror/addon/fold/brace-fold":56,"codemirror/addon/fold/foldgutter":58,"codemirror/addon/hint/show-hint":59,"codemirror/addon/lint/lint":60,"codemirror/addon/search/jump-to-line":61,"codemirror/addon/search/searchcursor":63,"codemirror/keymap/sublime":64,"prop-types":174}],22:[function(require,module,exports){
|
4182
4232
|
'use strict';
|
4183
4233
|
|
4184
4234
|
/**
|
@@ -4191,7 +4241,7 @@ VariableEditor.propTypes = {
|
|
4191
4241
|
|
4192
4242
|
// The primary React component to use.
|
4193
4243
|
module.exports = require('./components/GraphiQL').GraphiQL;
|
4194
|
-
},{"./components/GraphiQL":
|
4244
|
+
},{"./components/GraphiQL":12}],23:[function(require,module,exports){
|
4195
4245
|
"use strict";
|
4196
4246
|
|
4197
4247
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4240,7 +4290,7 @@ var CodeMirrorSizer = function () {
|
|
4240
4290
|
}();
|
4241
4291
|
|
4242
4292
|
exports.default = CodeMirrorSizer;
|
4243
|
-
},{}],
|
4293
|
+
},{}],24:[function(require,module,exports){
|
4244
4294
|
"use strict";
|
4245
4295
|
|
4246
4296
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4322,7 +4372,7 @@ var QueryStore = function () {
|
|
4322
4372
|
}();
|
4323
4373
|
|
4324
4374
|
exports.default = QueryStore;
|
4325
|
-
},{}],
|
4375
|
+
},{}],25:[function(require,module,exports){
|
4326
4376
|
'use strict';
|
4327
4377
|
|
4328
4378
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4403,7 +4453,7 @@ function isStorageAvailable(storage, key, value) {
|
|
4403
4453
|
storage.length !== 0;
|
4404
4454
|
}
|
4405
4455
|
}
|
4406
|
-
},{}],
|
4456
|
+
},{}],26:[function(require,module,exports){
|
4407
4457
|
"use strict";
|
4408
4458
|
|
4409
4459
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4435,7 +4485,7 @@ function debounce(duration, fn) {
|
|
4435
4485
|
}, duration);
|
4436
4486
|
};
|
4437
4487
|
}
|
4438
|
-
},{}],
|
4488
|
+
},{}],27:[function(require,module,exports){
|
4439
4489
|
"use strict";
|
4440
4490
|
|
4441
4491
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4474,7 +4524,7 @@ function getTop(initialElem) {
|
|
4474
4524
|
}
|
4475
4525
|
return pt;
|
4476
4526
|
}
|
4477
|
-
},{}],
|
4527
|
+
},{}],28:[function(require,module,exports){
|
4478
4528
|
'use strict';
|
4479
4529
|
|
4480
4530
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4656,7 +4706,7 @@ function getIndentation(str, index) {
|
|
4656
4706
|
}
|
4657
4707
|
return str.substring(indentStart, indentEnd);
|
4658
4708
|
}
|
4659
|
-
},{"graphql":
|
4709
|
+
},{"graphql":94}],29:[function(require,module,exports){
|
4660
4710
|
"use strict";
|
4661
4711
|
|
4662
4712
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4680,7 +4730,7 @@ function find(list, predicate) {
|
|
4680
4730
|
}
|
4681
4731
|
}
|
4682
4732
|
}
|
4683
|
-
},{}],
|
4733
|
+
},{}],30:[function(require,module,exports){
|
4684
4734
|
'use strict';
|
4685
4735
|
|
4686
4736
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4753,7 +4803,7 @@ function collectVariables(schema, documentAST) {
|
|
4753
4803
|
});
|
4754
4804
|
return variableToType;
|
4755
4805
|
}
|
4756
|
-
},{"graphql":
|
4806
|
+
},{"graphql":94}],31:[function(require,module,exports){
|
4757
4807
|
"use strict";
|
4758
4808
|
|
4759
4809
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4800,7 +4850,7 @@ function getSelectedOperationName(prevOperations, prevSelectedOperationName, ope
|
|
4800
4850
|
// Use the first operation.
|
4801
4851
|
return names[0];
|
4802
4852
|
}
|
4803
|
-
},{}],
|
4853
|
+
},{}],32:[function(require,module,exports){
|
4804
4854
|
'use strict';
|
4805
4855
|
|
4806
4856
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4821,7 +4871,7 @@ Object.defineProperty(exports, 'introspectionQuery', {
|
|
4821
4871
|
// query which includes the `subscriptionType` field as the stock introspection
|
4822
4872
|
// query does. This backup query removes that field.
|
4823
4873
|
var introspectionQuerySansSubscriptions = exports.introspectionQuerySansSubscriptions = '\n query IntrospectionQuery {\n __schema {\n queryType { name }\n mutationType { name }\n types {\n ...FullType\n }\n directives {\n name\n description\n locations\n args {\n ...InputValue\n }\n }\n }\n }\n\n fragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n }\n\n fragment InputValue on __InputValue {\n name\n description\n type { ...TypeRef }\n defaultValue\n }\n\n fragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n }\n';
|
4824
|
-
},{"graphql":
|
4874
|
+
},{"graphql":94}],33:[function(require,module,exports){
|
4825
4875
|
'use strict';
|
4826
4876
|
|
4827
4877
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4847,7 +4897,7 @@ var sanitizeRegex = new RegExp('[' + invalidCharacters.join('|') + ']', 'g');
|
|
4847
4897
|
function normalizeWhitespace(line) {
|
4848
4898
|
return line.replace(sanitizeRegex, ' ');
|
4849
4899
|
}
|
4850
|
-
},{}],
|
4900
|
+
},{}],34:[function(require,module,exports){
|
4851
4901
|
'use strict';
|
4852
4902
|
|
4853
4903
|
Object.defineProperty(exports, "__esModule", {
|
@@ -4942,7 +4992,7 @@ function renderType(type) {
|
|
4942
4992
|
}
|
4943
4993
|
return '<a class="typeName">' + type.name + '</a>';
|
4944
4994
|
}
|
4945
|
-
},{"codemirror":
|
4995
|
+
},{"codemirror":65,"graphql":94,"marked":169}],35:[function(require,module,exports){
|
4946
4996
|
(function (global){
|
4947
4997
|
'use strict';
|
4948
4998
|
|
@@ -5436,7 +5486,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
5436
5486
|
};
|
5437
5487
|
|
5438
5488
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
5439
|
-
},{"util/":
|
5489
|
+
},{"util/":178}],36:[function(require,module,exports){
|
5440
5490
|
'use strict';
|
5441
5491
|
|
5442
5492
|
var _codemirror = require('codemirror');
|
@@ -5520,7 +5570,7 @@ _codemirror2.default.registerHelper('hint', 'graphql', function (editor, options
|
|
5520
5570
|
|
5521
5571
|
return results;
|
5522
5572
|
});
|
5523
|
-
},{"codemirror":
|
5573
|
+
},{"codemirror":65,"graphql-language-service-interface":75}],37:[function(require,module,exports){
|
5524
5574
|
'use strict';
|
5525
5575
|
|
5526
5576
|
var _graphql = require('graphql');
|
@@ -5713,7 +5763,7 @@ function text(into, content, className, options, ref) {
|
|
5713
5763
|
into.appendChild(document.createTextNode(content));
|
5714
5764
|
}
|
5715
5765
|
}
|
5716
|
-
},{"./utils/SchemaReference":
|
5766
|
+
},{"./utils/SchemaReference":42,"./utils/getTypeInfo":44,"./utils/info-addon":46,"codemirror":65,"graphql":94}],38:[function(require,module,exports){
|
5717
5767
|
'use strict';
|
5718
5768
|
|
5719
5769
|
var _codemirror = require('codemirror');
|
@@ -5777,7 +5827,7 @@ _codemirror2.default.registerHelper('jump', 'graphql', function (token, options)
|
|
5777
5827
|
return (0, _SchemaReference.getTypeReference)(typeInfo);
|
5778
5828
|
}
|
5779
5829
|
});
|
5780
|
-
},{"./utils/SchemaReference":
|
5830
|
+
},{"./utils/SchemaReference":42,"./utils/getTypeInfo":44,"./utils/jump-addon":48,"codemirror":65}],39:[function(require,module,exports){
|
5781
5831
|
'use strict';
|
5782
5832
|
|
5783
5833
|
var _codemirror = require('codemirror');
|
@@ -5834,7 +5884,7 @@ _codemirror2.default.registerHelper('lint', 'graphql', function (text, options)
|
|
5834
5884
|
|
5835
5885
|
return results;
|
5836
5886
|
});
|
5837
|
-
},{"codemirror":
|
5887
|
+
},{"codemirror":65,"graphql-language-service-interface":75}],40:[function(require,module,exports){
|
5838
5888
|
'use strict';
|
5839
5889
|
|
5840
5890
|
var _codemirror = require('codemirror');
|
@@ -5906,7 +5956,7 @@ function indent(state, textAfter) {
|
|
5906
5956
|
var level = !levels || levels.length === 0 ? state.indentLevel : levels[levels.length - 1] - (this.electricInput.test(textAfter) ? 1 : 0);
|
5907
5957
|
return level * this.config.indentUnit;
|
5908
5958
|
}
|
5909
|
-
},{"codemirror":
|
5959
|
+
},{"codemirror":65,"graphql-language-service-parser":79}],41:[function(require,module,exports){
|
5910
5960
|
'use strict';
|
5911
5961
|
|
5912
5962
|
var _codemirror = require('codemirror');
|
@@ -6019,7 +6069,7 @@ var ParseRules = {
|
|
6019
6069
|
ObjectValue: [(0, _graphqlLanguageServiceParser.p)('{'), (0, _graphqlLanguageServiceParser.list)('ObjectField', (0, _graphqlLanguageServiceParser.p)(',')), (0, _graphqlLanguageServiceParser.p)('}')],
|
6020
6070
|
ObjectField: [(0, _graphqlLanguageServiceParser.t)('String', 'property'), (0, _graphqlLanguageServiceParser.p)(':'), 'Value']
|
6021
6071
|
};
|
6022
|
-
},{"codemirror":
|
6072
|
+
},{"codemirror":65,"graphql-language-service-parser":79}],42:[function(require,module,exports){
|
6023
6073
|
'use strict';
|
6024
6074
|
|
6025
6075
|
Object.defineProperty(exports, "__esModule", {
|
@@ -6094,7 +6144,7 @@ function getTypeReference(typeInfo, type) {
|
|
6094
6144
|
function isMetaField(fieldDef) {
|
6095
6145
|
return fieldDef.name.slice(0, 2) === '__';
|
6096
6146
|
}
|
6097
|
-
},{"graphql":
|
6147
|
+
},{"graphql":94}],43:[function(require,module,exports){
|
6098
6148
|
"use strict";
|
6099
6149
|
|
6100
6150
|
Object.defineProperty(exports, "__esModule", {
|
@@ -6122,7 +6172,7 @@ function forEachState(stack, fn) {
|
|
6122
6172
|
fn(reverseStateStack[i]);
|
6123
6173
|
}
|
6124
6174
|
}
|
6125
|
-
},{}],
|
6175
|
+
},{}],44:[function(require,module,exports){
|
6126
6176
|
'use strict';
|
6127
6177
|
|
6128
6178
|
Object.defineProperty(exports, "__esModule", {
|
@@ -6262,7 +6312,7 @@ function find(array, predicate) {
|
|
6262
6312
|
}
|
6263
6313
|
}
|
6264
6314
|
}
|
6265
|
-
},{"./forEachState":
|
6315
|
+
},{"./forEachState":43,"graphql":94,"graphql/type/introspection":117}],45:[function(require,module,exports){
|
6266
6316
|
'use strict';
|
6267
6317
|
|
6268
6318
|
Object.defineProperty(exports, "__esModule", {
|
@@ -6392,7 +6442,7 @@ function lexicalDistance(a, b) {
|
|
6392
6442
|
|
6393
6443
|
return d[aLength][bLength];
|
6394
6444
|
}
|
6395
|
-
},{}],
|
6445
|
+
},{}],46:[function(require,module,exports){
|
6396
6446
|
'use strict';
|
6397
6447
|
|
6398
6448
|
var _codemirror = require('codemirror');
|
@@ -6551,7 +6601,7 @@ function showPopup(cm, box, info) {
|
|
6551
6601
|
_codemirror2.default.on(popup, 'mouseout', onMouseOut);
|
6552
6602
|
_codemirror2.default.on(cm.getWrapperElement(), 'mouseout', onMouseOut);
|
6553
6603
|
}
|
6554
|
-
},{"codemirror":
|
6604
|
+
},{"codemirror":65}],47:[function(require,module,exports){
|
6555
6605
|
'use strict';
|
6556
6606
|
|
6557
6607
|
Object.defineProperty(exports, "__esModule", {
|
@@ -6869,7 +6919,7 @@ function readDigits() {
|
|
6869
6919
|
ch();
|
6870
6920
|
} while (code >= 48 && code <= 57); // 0 - 9
|
6871
6921
|
}
|
6872
|
-
},{}],
|
6922
|
+
},{}],48:[function(require,module,exports){
|
6873
6923
|
'use strict';
|
6874
6924
|
|
6875
6925
|
var _codemirror = require('codemirror');
|
@@ -7019,7 +7069,7 @@ function disableJumpMode(cm) {
|
|
7019
7069
|
|
7020
7070
|
marker.clear();
|
7021
7071
|
}
|
7022
|
-
},{"codemirror":
|
7072
|
+
},{"codemirror":65}],49:[function(require,module,exports){
|
7023
7073
|
'use strict';
|
7024
7074
|
|
7025
7075
|
var _codemirror = require('codemirror');
|
@@ -7172,7 +7222,7 @@ function getTypeInfo(variableToType, tokenState) {
|
|
7172
7222
|
|
7173
7223
|
return info;
|
7174
7224
|
}
|
7175
|
-
},{"../utils/forEachState":
|
7225
|
+
},{"../utils/forEachState":43,"../utils/hintList":45,"codemirror":65,"graphql":94}],50:[function(require,module,exports){
|
7176
7226
|
'use strict';
|
7177
7227
|
|
7178
7228
|
var _codemirror = require('codemirror');
|
@@ -7350,7 +7400,7 @@ function isNullish(value) {
|
|
7350
7400
|
function mapCat(array, mapper) {
|
7351
7401
|
return Array.prototype.concat.apply([], array.map(mapper));
|
7352
7402
|
}
|
7353
|
-
},{"../utils/jsonParse":
|
7403
|
+
},{"../utils/jsonParse":47,"codemirror":65,"graphql":94}],51:[function(require,module,exports){
|
7354
7404
|
'use strict';
|
7355
7405
|
|
7356
7406
|
var _codemirror = require('codemirror');
|
@@ -7476,7 +7526,7 @@ function namedKey(style) {
|
|
7476
7526
|
}
|
7477
7527
|
};
|
7478
7528
|
}
|
7479
|
-
},{"codemirror":
|
7529
|
+
},{"codemirror":65,"graphql-language-service-parser":79}],52:[function(require,module,exports){
|
7480
7530
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
7481
7531
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
7482
7532
|
|
@@ -7691,7 +7741,7 @@ function namedKey(style) {
|
|
7691
7741
|
});
|
7692
7742
|
});
|
7693
7743
|
|
7694
|
-
},{"../../lib/codemirror":
|
7744
|
+
},{"../../lib/codemirror":65}],53:[function(require,module,exports){
|
7695
7745
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
7696
7746
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
7697
7747
|
|
@@ -7850,7 +7900,7 @@ function namedKey(style) {
|
|
7850
7900
|
});
|
7851
7901
|
});
|
7852
7902
|
|
7853
|
-
},{"../../lib/codemirror":
|
7903
|
+
},{"../../lib/codemirror":65}],54:[function(require,module,exports){
|
7854
7904
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
7855
7905
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
7856
7906
|
|
@@ -8054,7 +8104,7 @@ function namedKey(style) {
|
|
8054
8104
|
}
|
8055
8105
|
});
|
8056
8106
|
|
8057
|
-
},{"../../lib/codemirror":
|
8107
|
+
},{"../../lib/codemirror":65}],55:[function(require,module,exports){
|
8058
8108
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
8059
8109
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
8060
8110
|
|
@@ -8196,7 +8246,7 @@ function namedKey(style) {
|
|
8196
8246
|
});
|
8197
8247
|
});
|
8198
8248
|
|
8199
|
-
},{"../../lib/codemirror":
|
8249
|
+
},{"../../lib/codemirror":65}],56:[function(require,module,exports){
|
8200
8250
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
8201
8251
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
8202
8252
|
|
@@ -8303,7 +8353,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
8303
8353
|
|
8304
8354
|
});
|
8305
8355
|
|
8306
|
-
},{"../../lib/codemirror":
|
8356
|
+
},{"../../lib/codemirror":65}],57:[function(require,module,exports){
|
8307
8357
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
8308
8358
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
8309
8359
|
|
@@ -8455,7 +8505,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
8455
8505
|
});
|
8456
8506
|
});
|
8457
8507
|
|
8458
|
-
},{"../../lib/codemirror":
|
8508
|
+
},{"../../lib/codemirror":65}],58:[function(require,module,exports){
|
8459
8509
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
8460
8510
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
8461
8511
|
|
@@ -8603,7 +8653,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
8603
8653
|
}
|
8604
8654
|
});
|
8605
8655
|
|
8606
|
-
},{"../../lib/codemirror":
|
8656
|
+
},{"../../lib/codemirror":65,"./foldcode":57}],59:[function(require,module,exports){
|
8607
8657
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
8608
8658
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
8609
8659
|
|
@@ -9043,7 +9093,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
9043
9093
|
CodeMirror.defineOption("hintOptions", null);
|
9044
9094
|
});
|
9045
9095
|
|
9046
|
-
},{"../../lib/codemirror":
|
9096
|
+
},{"../../lib/codemirror":65}],60:[function(require,module,exports){
|
9047
9097
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
9048
9098
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
9049
9099
|
|
@@ -9289,7 +9339,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
9289
9339
|
});
|
9290
9340
|
});
|
9291
9341
|
|
9292
|
-
},{"../../lib/codemirror":
|
9342
|
+
},{"../../lib/codemirror":65}],61:[function(require,module,exports){
|
9293
9343
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
9294
9344
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
9295
9345
|
|
@@ -9340,7 +9390,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
9340
9390
|
CodeMirror.keyMap["default"]["Alt-G"] = "jumpToLine";
|
9341
9391
|
});
|
9342
9392
|
|
9343
|
-
},{"../../lib/codemirror":
|
9393
|
+
},{"../../lib/codemirror":65,"../dialog/dialog":53}],62:[function(require,module,exports){
|
9344
9394
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
9345
9395
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
9346
9396
|
|
@@ -9594,7 +9644,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
9594
9644
|
CodeMirror.commands.replaceAll = function(cm) {replace(cm, true);};
|
9595
9645
|
});
|
9596
9646
|
|
9597
|
-
},{"../../lib/codemirror":
|
9647
|
+
},{"../../lib/codemirror":65,"../dialog/dialog":53,"./searchcursor":63}],63:[function(require,module,exports){
|
9598
9648
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
9599
9649
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
9600
9650
|
|
@@ -9883,7 +9933,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
9883
9933
|
})
|
9884
9934
|
});
|
9885
9935
|
|
9886
|
-
},{"../../lib/codemirror":
|
9936
|
+
},{"../../lib/codemirror":65}],64:[function(require,module,exports){
|
9887
9937
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
9888
9938
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
9889
9939
|
|
@@ -10481,7 +10531,7 @@ CodeMirror.registerHelper("fold", "include", function(cm, start) {
|
|
10481
10531
|
CodeMirror.normalizeKeyMap(map);
|
10482
10532
|
});
|
10483
10533
|
|
10484
|
-
},{"../addon/edit/matchbrackets":
|
10534
|
+
},{"../addon/edit/matchbrackets":55,"../addon/search/searchcursor":63,"../lib/codemirror":65}],65:[function(require,module,exports){
|
10485
10535
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
10486
10536
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
10487
10537
|
|
@@ -19982,7 +20032,7 @@ return CodeMirror$1;
|
|
19982
20032
|
|
19983
20033
|
})));
|
19984
20034
|
|
19985
|
-
},{}],
|
20035
|
+
},{}],66:[function(require,module,exports){
|
19986
20036
|
"use strict";
|
19987
20037
|
|
19988
20038
|
/**
|
@@ -20021,7 +20071,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
20021
20071
|
};
|
20022
20072
|
|
20023
20073
|
module.exports = emptyFunction;
|
20024
|
-
},{}],
|
20074
|
+
},{}],67:[function(require,module,exports){
|
20025
20075
|
(function (process){
|
20026
20076
|
/**
|
20027
20077
|
* Copyright (c) 2013-present, Facebook, Inc.
|
@@ -20079,7 +20129,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
20079
20129
|
|
20080
20130
|
module.exports = invariant;
|
20081
20131
|
}).call(this,require('_process'))
|
20082
|
-
},{"_process":
|
20132
|
+
},{"_process":170}],68:[function(require,module,exports){
|
20083
20133
|
(function (process){
|
20084
20134
|
/**
|
20085
20135
|
* Copyright 2014-2015, Facebook, Inc.
|
@@ -20148,7 +20198,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
20148
20198
|
|
20149
20199
|
module.exports = warning;
|
20150
20200
|
}).call(this,require('_process'))
|
20151
|
-
},{"./emptyFunction":
|
20201
|
+
},{"./emptyFunction":66,"_process":170}],69:[function(require,module,exports){
|
20152
20202
|
'use strict';
|
20153
20203
|
|
20154
20204
|
Object.defineProperty(exports, "__esModule", {
|
@@ -20380,7 +20430,7 @@ var GraphQLLanguageService = exports.GraphQLLanguageService = function () {
|
|
20380
20430
|
|
20381
20431
|
return GraphQLLanguageService;
|
20382
20432
|
}();
|
20383
|
-
},{"./getAutocompleteSuggestions":
|
20433
|
+
},{"./getAutocompleteSuggestions":71,"./getDefinition":72,"./getDiagnostics":73,"graphql":94,"graphql-language-service-utils":83,"graphql/language/kinds":104}],70:[function(require,module,exports){
|
20384
20434
|
'use strict';
|
20385
20435
|
|
20386
20436
|
Object.defineProperty(exports, "__esModule", {
|
@@ -20570,7 +20620,7 @@ function lexicalDistance(a, b) {
|
|
20570
20620
|
|
20571
20621
|
return d[aLength][bLength];
|
20572
20622
|
}
|
20573
|
-
},{"graphql":
|
20623
|
+
},{"graphql":94,"graphql/type/introspection":117}],71:[function(require,module,exports){
|
20574
20624
|
'use strict';
|
20575
20625
|
|
20576
20626
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21104,7 +21154,7 @@ function find(array, predicate) {
|
|
21104
21154
|
}
|
21105
21155
|
return null;
|
21106
21156
|
}
|
21107
|
-
},{"./autocompleteUtils":
|
21157
|
+
},{"./autocompleteUtils":70,"graphql":94,"graphql-language-service-parser":79}],72:[function(require,module,exports){
|
21108
21158
|
(function (process){
|
21109
21159
|
'use strict';
|
21110
21160
|
|
@@ -21210,7 +21260,7 @@ function getDefinitionForFragmentDefinition(path, text, definition) {
|
|
21210
21260
|
};
|
21211
21261
|
}
|
21212
21262
|
}).call(this,require('_process'))
|
21213
|
-
},{"_process":
|
21263
|
+
},{"_process":170,"assert":35,"graphql-language-service-utils":83}],73:[function(require,module,exports){
|
21214
21264
|
'use strict';
|
21215
21265
|
|
21216
21266
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21348,7 +21398,7 @@ function getRange(location, queryText) {
|
|
21348
21398
|
|
21349
21399
|
return new _graphqlLanguageServiceUtils.Range(new _graphqlLanguageServiceUtils.Position(line, start), new _graphqlLanguageServiceUtils.Position(line, end));
|
21350
21400
|
}
|
21351
|
-
},{"assert":
|
21401
|
+
},{"assert":35,"graphql":94,"graphql-language-service-parser":79,"graphql-language-service-utils":83}],74:[function(require,module,exports){
|
21352
21402
|
'use strict';
|
21353
21403
|
|
21354
21404
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21467,7 +21517,7 @@ function concatMap(arr, fn) {
|
|
21467
21517
|
}
|
21468
21518
|
return res;
|
21469
21519
|
}
|
21470
|
-
},{"graphql":
|
21520
|
+
},{"graphql":94,"graphql-language-service-utils":83,"graphql/language/kinds":104}],75:[function(require,module,exports){
|
21471
21521
|
'use strict';
|
21472
21522
|
|
21473
21523
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21563,7 +21613,7 @@ Object.defineProperty(exports, 'GraphQLLanguageService', {
|
|
21563
21613
|
return _GraphQLLanguageService.GraphQLLanguageService;
|
21564
21614
|
}
|
21565
21615
|
});
|
21566
|
-
},{"./GraphQLLanguageService":
|
21616
|
+
},{"./GraphQLLanguageService":69,"./autocompleteUtils":70,"./getAutocompleteSuggestions":71,"./getDefinition":72,"./getDiagnostics":73,"./getOutline":74}],76:[function(require,module,exports){
|
21567
21617
|
'use strict';
|
21568
21618
|
|
21569
21619
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21751,7 +21801,7 @@ var CharacterStream = function () {
|
|
21751
21801
|
*/
|
21752
21802
|
|
21753
21803
|
exports.default = CharacterStream;
|
21754
|
-
},{}],
|
21804
|
+
},{}],77:[function(require,module,exports){
|
21755
21805
|
'use strict';
|
21756
21806
|
|
21757
21807
|
Object.defineProperty(exports, "__esModule", {
|
@@ -21817,7 +21867,7 @@ function p(value, style) {
|
|
21817
21867
|
}
|
21818
21868
|
};
|
21819
21869
|
}
|
21820
|
-
},{}],
|
21870
|
+
},{}],78:[function(require,module,exports){
|
21821
21871
|
'use strict';
|
21822
21872
|
|
21823
21873
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22032,7 +22082,7 @@ function type(style) {
|
|
22032
22082
|
}
|
22033
22083
|
};
|
22034
22084
|
}
|
22035
|
-
},{"./RuleHelpers":
|
22085
|
+
},{"./RuleHelpers":77}],79:[function(require,module,exports){
|
22036
22086
|
'use strict';
|
22037
22087
|
|
22038
22088
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22112,7 +22162,7 @@ Object.defineProperty(exports, 'onlineParser', {
|
|
22112
22162
|
});
|
22113
22163
|
|
22114
22164
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
22115
|
-
},{"./CharacterStream":
|
22165
|
+
},{"./CharacterStream":76,"./RuleHelpers":77,"./Rules":78,"./onlineParser":80}],80:[function(require,module,exports){
|
22116
22166
|
'use strict';
|
22117
22167
|
|
22118
22168
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22409,7 +22459,7 @@ function lex(lexRules, stream) {
|
|
22409
22459
|
}
|
22410
22460
|
}
|
22411
22461
|
}
|
22412
|
-
},{"./Rules":
|
22462
|
+
},{"./Rules":78}],81:[function(require,module,exports){
|
22413
22463
|
'use strict';
|
22414
22464
|
|
22415
22465
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22499,7 +22549,7 @@ function locToRange(text, loc) {
|
|
22499
22549
|
var end = offsetToPosition(text, loc.end);
|
22500
22550
|
return new Range(start, end);
|
22501
22551
|
}
|
22502
|
-
},{}],
|
22552
|
+
},{}],82:[function(require,module,exports){
|
22503
22553
|
'use strict';
|
22504
22554
|
|
22505
22555
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22550,7 +22600,7 @@ function pointToOffset(text, point) {
|
|
22550
22600
|
return a + b;
|
22551
22601
|
}, 0);
|
22552
22602
|
}
|
22553
|
-
},{"./Range":
|
22603
|
+
},{"./Range":81,"graphql":94}],83:[function(require,module,exports){
|
22554
22604
|
'use strict';
|
22555
22605
|
|
22556
22606
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22607,7 +22657,7 @@ Object.defineProperty(exports, 'validateWithCustomRules', {
|
|
22607
22657
|
return _validateWithCustomRules.validateWithCustomRules;
|
22608
22658
|
}
|
22609
22659
|
});
|
22610
|
-
},{"./Range":
|
22660
|
+
},{"./Range":81,"./getASTNodeAtPosition":82,"./validateWithCustomRules":84}],84:[function(require,module,exports){
|
22611
22661
|
'use strict';
|
22612
22662
|
|
22613
22663
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22652,7 +22702,7 @@ function validateWithCustomRules(schema, ast, customRules) {
|
|
22652
22702
|
*
|
22653
22703
|
*
|
22654
22704
|
*/
|
22655
|
-
},{"graphql":
|
22705
|
+
},{"graphql":94,"graphql/validation/rules/NoUnusedFragments":151}],85:[function(require,module,exports){
|
22656
22706
|
'use strict';
|
22657
22707
|
|
22658
22708
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22768,7 +22818,7 @@ GraphQLError.prototype = Object.create(Error.prototype, {
|
|
22768
22818
|
constructor: { value: GraphQLError },
|
22769
22819
|
name: { value: 'GraphQLError' }
|
22770
22820
|
});
|
22771
|
-
},{"../language/location":
|
22821
|
+
},{"../language/location":106}],86:[function(require,module,exports){
|
22772
22822
|
'use strict';
|
22773
22823
|
|
22774
22824
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22802,7 +22852,7 @@ function formatError(error) {
|
|
22802
22852
|
* LICENSE file in the root directory of this source tree. An additional grant
|
22803
22853
|
* of patent rights can be found in the PATENTS file in the same directory.
|
22804
22854
|
*/
|
22805
|
-
},{"../jsutils/invariant":
|
22855
|
+
},{"../jsutils/invariant":96}],87:[function(require,module,exports){
|
22806
22856
|
'use strict';
|
22807
22857
|
|
22808
22858
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22844,7 +22894,7 @@ Object.defineProperty(exports, 'formatError', {
|
|
22844
22894
|
return _formatError.formatError;
|
22845
22895
|
}
|
22846
22896
|
});
|
22847
|
-
},{"./GraphQLError":
|
22897
|
+
},{"./GraphQLError":85,"./formatError":86,"./locatedError":88,"./syntaxError":89}],88:[function(require,module,exports){
|
22848
22898
|
'use strict';
|
22849
22899
|
|
22850
22900
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22877,7 +22927,7 @@ function locatedError(originalError, nodes, path) {
|
|
22877
22927
|
* LICENSE file in the root directory of this source tree. An additional grant
|
22878
22928
|
* of patent rights can be found in the PATENTS file in the same directory.
|
22879
22929
|
*/
|
22880
|
-
},{"./GraphQLError":
|
22930
|
+
},{"./GraphQLError":85}],89:[function(require,module,exports){
|
22881
22931
|
'use strict';
|
22882
22932
|
|
22883
22933
|
Object.defineProperty(exports, "__esModule", {
|
@@ -22926,7 +22976,7 @@ function highlightSourceAtLocation(source, location) {
|
|
22926
22976
|
function lpad(len, str) {
|
22927
22977
|
return Array(len - str.length + 1).join(' ') + str;
|
22928
22978
|
}
|
22929
|
-
},{"../language/location":
|
22979
|
+
},{"../language/location":106,"./GraphQLError":85}],90:[function(require,module,exports){
|
22930
22980
|
'use strict';
|
22931
22981
|
|
22932
22982
|
Object.defineProperty(exports, "__esModule", {
|
@@ -23756,7 +23806,7 @@ function getFieldDef(schema, parentType, fieldName) {
|
|
23756
23806
|
}
|
23757
23807
|
return parentType.getFields()[fieldName];
|
23758
23808
|
}
|
23759
|
-
},{"../error":
|
23809
|
+
},{"../error":87,"../jsutils/invariant":96,"../jsutils/isNullish":98,"../language/kinds":104,"../type/definition":114,"../type/directives":115,"../type/introspection":117,"../type/schema":119,"../utilities/typeFromAST":137,"./values":92,"iterall":168}],91:[function(require,module,exports){
|
23760
23810
|
'use strict';
|
23761
23811
|
|
23762
23812
|
Object.defineProperty(exports, "__esModule", {
|
@@ -23792,7 +23842,7 @@ Object.defineProperty(exports, 'getDirectiveValues', {
|
|
23792
23842
|
return _values.getDirectiveValues;
|
23793
23843
|
}
|
23794
23844
|
});
|
23795
|
-
},{"./execute":
|
23845
|
+
},{"./execute":90,"./values":92}],92:[function(require,module,exports){
|
23796
23846
|
'use strict';
|
23797
23847
|
|
23798
23848
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24050,7 +24100,7 @@ function coerceValue(type, value) {
|
|
24050
24100
|
|
24051
24101
|
return parsed;
|
24052
24102
|
}
|
24053
|
-
},{"../error":
|
24103
|
+
},{"../error":87,"../jsutils/find":95,"../jsutils/invariant":96,"../jsutils/isInvalid":97,"../jsutils/isNullish":98,"../jsutils/keyMap":99,"../language/kinds":104,"../language/printer":108,"../type/definition":114,"../utilities/isValidJSValue":132,"../utilities/isValidLiteralValue":133,"../utilities/typeFromAST":137,"../utilities/valueFromAST":138,"iterall":168}],93:[function(require,module,exports){
|
24054
24104
|
'use strict';
|
24055
24105
|
|
24056
24106
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24131,7 +24181,7 @@ function graphqlImpl(schema, source, rootValue, contextValue, variableValues, op
|
|
24131
24181
|
resolve((0, _execute.execute)(schema, document, rootValue, contextValue, variableValues, operationName, fieldResolver));
|
24132
24182
|
});
|
24133
24183
|
}
|
24134
|
-
},{"./execution/execute":
|
24184
|
+
},{"./execution/execute":90,"./language/parser":107,"./validation/validate":167}],94:[function(require,module,exports){
|
24135
24185
|
'use strict';
|
24136
24186
|
|
24137
24187
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24911,7 +24961,7 @@ Object.defineProperty(exports, 'findDeprecatedUsages', {
|
|
24911
24961
|
return _utilities.findDeprecatedUsages;
|
24912
24962
|
}
|
24913
24963
|
});
|
24914
|
-
},{"./error":
|
24964
|
+
},{"./error":87,"./execution":91,"./graphql":93,"./language":103,"./subscription":111,"./type":116,"./utilities":130,"./validation":139}],95:[function(require,module,exports){
|
24915
24965
|
"use strict";
|
24916
24966
|
|
24917
24967
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24935,7 +24985,7 @@ function find(list, predicate) {
|
|
24935
24985
|
}
|
24936
24986
|
}
|
24937
24987
|
}
|
24938
|
-
},{}],
|
24988
|
+
},{}],96:[function(require,module,exports){
|
24939
24989
|
"use strict";
|
24940
24990
|
|
24941
24991
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24957,7 +25007,7 @@ function invariant(condition, message) {
|
|
24957
25007
|
throw new Error(message);
|
24958
25008
|
}
|
24959
25009
|
}
|
24960
|
-
},{}],
|
25010
|
+
},{}],97:[function(require,module,exports){
|
24961
25011
|
"use strict";
|
24962
25012
|
|
24963
25013
|
Object.defineProperty(exports, "__esModule", {
|
@@ -24980,7 +25030,7 @@ exports.default = isInvalid;
|
|
24980
25030
|
function isInvalid(value) {
|
24981
25031
|
return value === undefined || value !== value;
|
24982
25032
|
}
|
24983
|
-
},{}],
|
25033
|
+
},{}],98:[function(require,module,exports){
|
24984
25034
|
"use strict";
|
24985
25035
|
|
24986
25036
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25003,7 +25053,7 @@ exports.default = isNullish;
|
|
25003
25053
|
function isNullish(value) {
|
25004
25054
|
return value === null || value === undefined || value !== value;
|
25005
25055
|
}
|
25006
|
-
},{}],
|
25056
|
+
},{}],99:[function(require,module,exports){
|
25007
25057
|
"use strict";
|
25008
25058
|
|
25009
25059
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25048,7 +25098,7 @@ function keyMap(list, keyFn) {
|
|
25048
25098
|
return map[keyFn(item)] = item, map;
|
25049
25099
|
}, Object.create(null));
|
25050
25100
|
}
|
25051
|
-
},{}],
|
25101
|
+
},{}],100:[function(require,module,exports){
|
25052
25102
|
"use strict";
|
25053
25103
|
|
25054
25104
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25087,7 +25137,7 @@ function keyValMap(list, keyFn, valFn) {
|
|
25087
25137
|
return map[keyFn(item)] = valFn(item), map;
|
25088
25138
|
}, Object.create(null));
|
25089
25139
|
}
|
25090
|
-
},{}],
|
25140
|
+
},{}],101:[function(require,module,exports){
|
25091
25141
|
'use strict';
|
25092
25142
|
|
25093
25143
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25117,7 +25167,7 @@ function quotedOrList(items) {
|
|
25117
25167
|
return list + (selected.length > 2 ? ', ' : ' ') + (index === selected.length - 1 ? 'or ' : '') + quoted;
|
25118
25168
|
});
|
25119
25169
|
}
|
25120
|
-
},{}],
|
25170
|
+
},{}],102:[function(require,module,exports){
|
25121
25171
|
"use strict";
|
25122
25172
|
|
25123
25173
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25197,7 +25247,7 @@ function lexicalDistance(a, b) {
|
|
25197
25247
|
|
25198
25248
|
return d[aLength][bLength];
|
25199
25249
|
}
|
25200
|
-
},{}],
|
25250
|
+
},{}],103:[function(require,module,exports){
|
25201
25251
|
'use strict';
|
25202
25252
|
|
25203
25253
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25308,7 +25358,7 @@ var Kind = _interopRequireWildcard(_kinds);
|
|
25308
25358
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
|
25309
25359
|
|
25310
25360
|
exports.Kind = Kind;
|
25311
|
-
},{"./kinds":
|
25361
|
+
},{"./kinds":104,"./lexer":105,"./location":106,"./parser":107,"./printer":108,"./source":109,"./visitor":110}],104:[function(require,module,exports){
|
25312
25362
|
'use strict';
|
25313
25363
|
|
25314
25364
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25390,7 +25440,7 @@ var TYPE_EXTENSION_DEFINITION = exports.TYPE_EXTENSION_DEFINITION = 'TypeExtensi
|
|
25390
25440
|
// Directive Definitions
|
25391
25441
|
|
25392
25442
|
var DIRECTIVE_DEFINITION = exports.DIRECTIVE_DEFINITION = 'DirectiveDefinition';
|
25393
|
-
},{}],
|
25443
|
+
},{}],105:[function(require,module,exports){
|
25394
25444
|
'use strict';
|
25395
25445
|
|
25396
25446
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25893,7 +25943,7 @@ function readName(source, position, line, col, prev) {
|
|
25893
25943
|
}
|
25894
25944
|
return new Tok(NAME, position, end, line, col, prev, slice.call(body, position, end));
|
25895
25945
|
}
|
25896
|
-
},{"../error":
|
25946
|
+
},{"../error":87}],106:[function(require,module,exports){
|
25897
25947
|
'use strict';
|
25898
25948
|
|
25899
25949
|
Object.defineProperty(exports, "__esModule", {
|
@@ -25931,7 +25981,7 @@ function getLocation(source, position) {
|
|
25931
25981
|
/**
|
25932
25982
|
* Represents a location in a Source.
|
25933
25983
|
*/
|
25934
|
-
},{}],
|
25984
|
+
},{}],107:[function(require,module,exports){
|
25935
25985
|
'use strict';
|
25936
25986
|
|
25937
25987
|
Object.defineProperty(exports, "__esModule", {
|
@@ -26959,7 +27009,7 @@ function many(lexer, openKind, parseFn, closeKind) {
|
|
26959
27009
|
}
|
26960
27010
|
return nodes;
|
26961
27011
|
}
|
26962
|
-
},{"../error":
|
27012
|
+
},{"../error":87,"./kinds":104,"./lexer":105,"./source":109}],108:[function(require,module,exports){
|
26963
27013
|
'use strict';
|
26964
27014
|
|
26965
27015
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27242,7 +27292,7 @@ function wrap(start, maybeString, end) {
|
|
27242
27292
|
function indent(maybeString) {
|
27243
27293
|
return maybeString && maybeString.replace(/\n/g, '\n ');
|
27244
27294
|
}
|
27245
|
-
},{"./visitor":
|
27295
|
+
},{"./visitor":110}],109:[function(require,module,exports){
|
27246
27296
|
'use strict';
|
27247
27297
|
|
27248
27298
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27272,7 +27322,7 @@ var Source = exports.Source = function Source(body, name) {
|
|
27272
27322
|
this.body = body;
|
27273
27323
|
this.name = name || 'GraphQL request';
|
27274
27324
|
};
|
27275
|
-
},{}],
|
27325
|
+
},{}],110:[function(require,module,exports){
|
27276
27326
|
'use strict';
|
27277
27327
|
|
27278
27328
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27664,7 +27714,7 @@ function getVisitFn(visitor, kind, isLeaving) {
|
|
27664
27714
|
}
|
27665
27715
|
}
|
27666
27716
|
}
|
27667
|
-
},{}],
|
27717
|
+
},{}],111:[function(require,module,exports){
|
27668
27718
|
'use strict';
|
27669
27719
|
|
27670
27720
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27685,7 +27735,7 @@ Object.defineProperty(exports, 'createSourceEventStream', {
|
|
27685
27735
|
return _subscribe.createSourceEventStream;
|
27686
27736
|
}
|
27687
27737
|
});
|
27688
|
-
},{"./subscribe":
|
27738
|
+
},{"./subscribe":113}],112:[function(require,module,exports){
|
27689
27739
|
'use strict';
|
27690
27740
|
|
27691
27741
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27755,7 +27805,7 @@ function asyncMapValue(value, callback) {
|
|
27755
27805
|
function iteratorResult(value) {
|
27756
27806
|
return { value: value, done: false };
|
27757
27807
|
}
|
27758
|
-
},{"iterall":
|
27808
|
+
},{"iterall":168}],113:[function(require,module,exports){
|
27759
27809
|
'use strict';
|
27760
27810
|
|
27761
27811
|
Object.defineProperty(exports, "__esModule", {
|
@@ -27874,7 +27924,7 @@ function createSourceEventStream(schema, document, rootValue, contextValue, vari
|
|
27874
27924
|
|
27875
27925
|
return subscription;
|
27876
27926
|
}
|
27877
|
-
},{"../execution/execute":
|
27927
|
+
},{"../execution/execute":90,"../jsutils/invariant":96,"../type/schema":119,"./mapAsyncIterator":112,"iterall":168}],114:[function(require,module,exports){
|
27878
27928
|
'use strict';
|
27879
27929
|
|
27880
27930
|
Object.defineProperty(exports, "__esModule", {
|
@@ -28658,7 +28708,7 @@ var GraphQLNonNull = exports.GraphQLNonNull = function () {
|
|
28658
28708
|
|
28659
28709
|
|
28660
28710
|
GraphQLNonNull.prototype.toJSON = GraphQLNonNull.prototype.inspect = GraphQLNonNull.prototype.toString;
|
28661
|
-
},{"../jsutils/invariant":
|
28711
|
+
},{"../jsutils/invariant":96,"../jsutils/isNullish":98,"../language/kinds":104,"../utilities/assertValidName":121}],115:[function(require,module,exports){
|
28662
28712
|
'use strict';
|
28663
28713
|
|
28664
28714
|
Object.defineProperty(exports, "__esModule", {
|
@@ -28801,7 +28851,7 @@ var GraphQLDeprecatedDirective = exports.GraphQLDeprecatedDirective = new GraphQ
|
|
28801
28851
|
* The full list of specified directives.
|
28802
28852
|
*/
|
28803
28853
|
var specifiedDirectives = exports.specifiedDirectives = [GraphQLIncludeDirective, GraphQLSkipDirective, GraphQLDeprecatedDirective];
|
28804
|
-
},{"../jsutils/invariant":
|
28854
|
+
},{"../jsutils/invariant":96,"../utilities/assertValidName":121,"./definition":114,"./scalars":118}],116:[function(require,module,exports){
|
28805
28855
|
'use strict';
|
28806
28856
|
|
28807
28857
|
Object.defineProperty(exports, "__esModule", {
|
@@ -29116,7 +29166,7 @@ Object.defineProperty(exports, 'TypeNameMetaFieldDef', {
|
|
29116
29166
|
return _introspection.TypeNameMetaFieldDef;
|
29117
29167
|
}
|
29118
29168
|
});
|
29119
|
-
},{"./definition":
|
29169
|
+
},{"./definition":114,"./directives":115,"./introspection":117,"./scalars":118,"./schema":119}],117:[function(require,module,exports){
|
29120
29170
|
'use strict';
|
29121
29171
|
|
29122
29172
|
Object.defineProperty(exports, "__esModule", {
|
@@ -29576,7 +29626,7 @@ var TypeNameMetaFieldDef = exports.TypeNameMetaFieldDef = {
|
|
29576
29626
|
return parentType.name;
|
29577
29627
|
}
|
29578
29628
|
};
|
29579
|
-
},{"../jsutils/isInvalid":
|
29629
|
+
},{"../jsutils/isInvalid":97,"../language/printer":108,"../utilities/astFromValue":122,"./definition":114,"./directives":115,"./scalars":118}],118:[function(require,module,exports){
|
29580
29630
|
'use strict';
|
29581
29631
|
|
29582
29632
|
Object.defineProperty(exports, "__esModule", {
|
@@ -29691,7 +29741,7 @@ var GraphQLID = exports.GraphQLID = new _definition.GraphQLScalarType({
|
|
29691
29741
|
return ast.kind === Kind.STRING || ast.kind === Kind.INT ? ast.value : null;
|
29692
29742
|
}
|
29693
29743
|
});
|
29694
|
-
},{"../language/kinds":
|
29744
|
+
},{"../language/kinds":104,"./definition":114}],119:[function(require,module,exports){
|
29695
29745
|
'use strict';
|
29696
29746
|
|
29697
29747
|
Object.defineProperty(exports, "__esModule", {
|
@@ -29965,7 +30015,7 @@ function assertObjectImplementsInterface(schema, object, iface) {
|
|
29965
30015
|
});
|
29966
30016
|
});
|
29967
30017
|
}
|
29968
|
-
},{"../jsutils/find":
|
30018
|
+
},{"../jsutils/find":95,"../jsutils/invariant":96,"../utilities/typeComparators":136,"./definition":114,"./directives":115,"./introspection":117}],120:[function(require,module,exports){
|
29969
30019
|
'use strict';
|
29970
30020
|
|
29971
30021
|
Object.defineProperty(exports, "__esModule", {
|
@@ -30201,7 +30251,7 @@ function getFieldDef(schema, parentType, fieldNode) {
|
|
30201
30251
|
return parentType.getFields()[name];
|
30202
30252
|
}
|
30203
30253
|
}
|
30204
|
-
},{"../jsutils/find":
|
30254
|
+
},{"../jsutils/find":95,"../language/kinds":104,"../type/definition":114,"../type/introspection":117,"./typeFromAST":137}],121:[function(require,module,exports){
|
30205
30255
|
(function (process){
|
30206
30256
|
'use strict';
|
30207
30257
|
|
@@ -30267,7 +30317,7 @@ function formatWarning(error) {
|
|
30267
30317
|
return formatted.trim();
|
30268
30318
|
}
|
30269
30319
|
}).call(this,require('_process'))
|
30270
|
-
},{"_process":
|
30320
|
+
},{"_process":170}],122:[function(require,module,exports){
|
30271
30321
|
'use strict';
|
30272
30322
|
|
30273
30323
|
Object.defineProperty(exports, "__esModule", {
|
@@ -30429,7 +30479,7 @@ function astFromValue(value, type) {
|
|
30429
30479
|
* LICENSE file in the root directory of this source tree. An additional grant
|
30430
30480
|
* of patent rights can be found in the PATENTS file in the same directory.
|
30431
30481
|
*/
|
30432
|
-
},{"../jsutils/invariant":
|
30482
|
+
},{"../jsutils/invariant":96,"../jsutils/isInvalid":97,"../jsutils/isNullish":98,"../language/kinds":104,"../type/definition":114,"../type/scalars":118,"iterall":168}],123:[function(require,module,exports){
|
30433
30483
|
'use strict';
|
30434
30484
|
|
30435
30485
|
Object.defineProperty(exports, "__esModule", {
|
@@ -30904,7 +30954,7 @@ function leadingSpaces(str) {
|
|
30904
30954
|
function cannotExecuteSchema() {
|
30905
30955
|
throw new Error('Generated Schema cannot use Interface or Union types for execution.');
|
30906
30956
|
}
|
30907
|
-
},{"../execution/values":
|
30957
|
+
},{"../execution/values":92,"../jsutils/invariant":96,"../jsutils/keyValMap":100,"../language/kinds":104,"../language/lexer":105,"../language/parser":107,"../type/definition":114,"../type/directives":115,"../type/introspection":117,"../type/scalars":118,"../type/schema":119,"./valueFromAST":138}],124:[function(require,module,exports){
|
30908
30958
|
'use strict';
|
30909
30959
|
|
30910
30960
|
Object.defineProperty(exports, "__esModule", {
|
@@ -31214,7 +31264,7 @@ function buildClientSchema(introspection) {
|
|
31214
31264
|
function cannotExecuteClientSchema() {
|
31215
31265
|
throw new Error('Client Schema cannot use Interface or Union types for execution.');
|
31216
31266
|
}
|
31217
|
-
},{"../jsutils/invariant":
|
31267
|
+
},{"../jsutils/invariant":96,"../jsutils/keyMap":99,"../jsutils/keyValMap":100,"../language/parser":107,"../type/definition":114,"../type/directives":115,"../type/introspection":117,"../type/scalars":118,"../type/schema":119,"./valueFromAST":138}],125:[function(require,module,exports){
|
31218
31268
|
'use strict';
|
31219
31269
|
|
31220
31270
|
Object.defineProperty(exports, "__esModule", {
|
@@ -31249,7 +31299,7 @@ function concatAST(asts) {
|
|
31249
31299
|
* LICENSE file in the root directory of this source tree. An additional grant
|
31250
31300
|
* of patent rights can be found in the PATENTS file in the same directory.
|
31251
31301
|
*/
|
31252
|
-
},{}],
|
31302
|
+
},{}],126:[function(require,module,exports){
|
31253
31303
|
'use strict';
|
31254
31304
|
|
31255
31305
|
Object.defineProperty(exports, "__esModule", {
|
@@ -31784,7 +31834,7 @@ function extendSchema(schema, documentAST) {
|
|
31784
31834
|
function cannotExecuteExtendedSchema() {
|
31785
31835
|
throw new Error('Extended Schema cannot use Interface or Union types for execution.');
|
31786
31836
|
}
|
31787
|
-
},{"../error/GraphQLError":
|
31837
|
+
},{"../error/GraphQLError":85,"../jsutils/invariant":96,"../jsutils/keyMap":99,"../jsutils/keyValMap":100,"../language/kinds":104,"../type/definition":114,"../type/directives":115,"../type/introspection":117,"../type/scalars":118,"../type/schema":119,"./buildASTSchema":123,"./valueFromAST":138}],127:[function(require,module,exports){
|
31788
31838
|
'use strict';
|
31789
31839
|
|
31790
31840
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32221,7 +32271,7 @@ function findInterfacesRemovedFromObjectTypes(oldSchema, newSchema) {
|
|
32221
32271
|
});
|
32222
32272
|
return breakingChanges;
|
32223
32273
|
}
|
32224
|
-
},{"../type/definition":
|
32274
|
+
},{"../type/definition":114,"../type/schema":119}],128:[function(require,module,exports){
|
32225
32275
|
'use strict';
|
32226
32276
|
|
32227
32277
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32281,7 +32331,7 @@ function findDeprecatedUsages(schema, ast) {
|
|
32281
32331
|
* LICENSE file in the root directory of this source tree. An additional grant
|
32282
32332
|
* of patent rights can be found in the PATENTS file in the same directory.
|
32283
32333
|
*/
|
32284
|
-
},{"../error/GraphQLError":
|
32334
|
+
},{"../error/GraphQLError":85,"../language/visitor":110,"../type/definition":114,"../type/schema":119,"./TypeInfo":120}],129:[function(require,module,exports){
|
32285
32335
|
'use strict';
|
32286
32336
|
|
32287
32337
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32324,7 +32374,7 @@ function getOperationAST(documentAST, operationName) {
|
|
32324
32374
|
* LICENSE file in the root directory of this source tree. An additional grant
|
32325
32375
|
* of patent rights can be found in the PATENTS file in the same directory.
|
32326
32376
|
*/
|
32327
|
-
},{"../language/kinds":
|
32377
|
+
},{"../language/kinds":104}],130:[function(require,module,exports){
|
32328
32378
|
'use strict';
|
32329
32379
|
|
32330
32380
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32534,7 +32584,7 @@ Object.defineProperty(exports, 'findDeprecatedUsages', {
|
|
32534
32584
|
return _findDeprecatedUsages.findDeprecatedUsages;
|
32535
32585
|
}
|
32536
32586
|
});
|
32537
|
-
},{"./TypeInfo":
|
32587
|
+
},{"./TypeInfo":120,"./assertValidName":121,"./astFromValue":122,"./buildASTSchema":123,"./buildClientSchema":124,"./concatAST":125,"./extendSchema":126,"./findBreakingChanges":127,"./findDeprecatedUsages":128,"./getOperationAST":129,"./introspectionQuery":131,"./isValidJSValue":132,"./isValidLiteralValue":133,"./schemaPrinter":134,"./separateOperations":135,"./typeComparators":136,"./typeFromAST":137,"./valueFromAST":138}],131:[function(require,module,exports){
|
32538
32588
|
'use strict';
|
32539
32589
|
|
32540
32590
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32549,7 +32599,7 @@ var introspectionQuery = exports.introspectionQuery = '\n query IntrospectionQu
|
|
32549
32599
|
* LICENSE file in the root directory of this source tree. An additional grant
|
32550
32600
|
* of patent rights can be found in the PATENTS file in the same directory.
|
32551
32601
|
*/
|
32552
|
-
},{}],
|
32602
|
+
},{}],132:[function(require,module,exports){
|
32553
32603
|
'use strict';
|
32554
32604
|
|
32555
32605
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32656,7 +32706,7 @@ function isValidJSValue(value, type) {
|
|
32656
32706
|
|
32657
32707
|
return [];
|
32658
32708
|
}
|
32659
|
-
},{"../jsutils/invariant":
|
32709
|
+
},{"../jsutils/invariant":96,"../jsutils/isNullish":98,"../type/definition":114,"iterall":168}],133:[function(require,module,exports){
|
32660
32710
|
'use strict';
|
32661
32711
|
|
32662
32712
|
Object.defineProperty(exports, "__esModule", {
|
@@ -32772,7 +32822,7 @@ function isValidLiteralValue(type, valueNode) {
|
|
32772
32822
|
* LICENSE file in the root directory of this source tree. An additional grant
|
32773
32823
|
* of patent rights can be found in the PATENTS file in the same directory.
|
32774
32824
|
*/
|
32775
|
-
},{"../jsutils/invariant":
|
32825
|
+
},{"../jsutils/invariant":96,"../jsutils/keyMap":99,"../language/kinds":104,"../language/printer":108,"../type/definition":114}],134:[function(require,module,exports){
|
32776
32826
|
'use strict';
|
32777
32827
|
|
32778
32828
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33057,7 +33107,7 @@ function breakLine(line, len) {
|
|
33057
33107
|
}
|
33058
33108
|
return sublines;
|
33059
33109
|
}
|
33060
|
-
},{"../jsutils/invariant":
|
33110
|
+
},{"../jsutils/invariant":96,"../jsutils/isInvalid":97,"../jsutils/isNullish":98,"../language/printer":108,"../type/definition":114,"../type/directives":115,"../type/scalars":118,"../utilities/astFromValue":122}],135:[function(require,module,exports){
|
33061
33111
|
'use strict';
|
33062
33112
|
|
33063
33113
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33153,7 +33203,7 @@ function collectTransitiveDependencies(collected, depGraph, fromName) {
|
|
33153
33203
|
});
|
33154
33204
|
}
|
33155
33205
|
}
|
33156
|
-
},{"../language/visitor":
|
33206
|
+
},{"../language/visitor":110}],136:[function(require,module,exports){
|
33157
33207
|
'use strict';
|
33158
33208
|
|
33159
33209
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33278,7 +33328,7 @@ function doTypesOverlap(schema, typeA, typeB) {
|
|
33278
33328
|
// Otherwise the types do not overlap.
|
33279
33329
|
return false;
|
33280
33330
|
}
|
33281
|
-
},{"../type/definition":
|
33331
|
+
},{"../type/definition":114}],137:[function(require,module,exports){
|
33282
33332
|
'use strict';
|
33283
33333
|
|
33284
33334
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33336,7 +33386,7 @@ function typeFromASTImpl(schema, typeNode) {
|
|
33336
33386
|
*/
|
33337
33387
|
|
33338
33388
|
var typeFromAST = exports.typeFromAST = typeFromASTImpl;
|
33339
|
-
},{"../jsutils/invariant":
|
33389
|
+
},{"../jsutils/invariant":96,"../language/kinds":104,"../type/definition":114}],138:[function(require,module,exports){
|
33340
33390
|
'use strict';
|
33341
33391
|
|
33342
33392
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33509,7 +33559,7 @@ function valueFromAST(valueNode, type, variables) {
|
|
33509
33559
|
function isMissingVariable(valueNode, variables) {
|
33510
33560
|
return valueNode.kind === Kind.VARIABLE && (!variables || (0, _isInvalid2.default)(variables[valueNode.name.value]));
|
33511
33561
|
}
|
33512
|
-
},{"../jsutils/invariant":
|
33562
|
+
},{"../jsutils/invariant":96,"../jsutils/isInvalid":97,"../jsutils/isNullish":98,"../jsutils/keyMap":99,"../language/kinds":104,"../type/definition":114}],139:[function(require,module,exports){
|
33513
33563
|
'use strict';
|
33514
33564
|
|
33515
33565
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33773,7 +33823,7 @@ Object.defineProperty(exports, 'VariablesInAllowedPositionRule', {
|
|
33773
33823
|
return _VariablesInAllowedPosition.VariablesInAllowedPosition;
|
33774
33824
|
}
|
33775
33825
|
});
|
33776
|
-
},{"./rules/ArgumentsOfCorrectType":
|
33826
|
+
},{"./rules/ArgumentsOfCorrectType":140,"./rules/DefaultValuesOfCorrectType":141,"./rules/FieldsOnCorrectType":142,"./rules/FragmentsOnCompositeTypes":143,"./rules/KnownArgumentNames":144,"./rules/KnownDirectives":145,"./rules/KnownFragmentNames":146,"./rules/KnownTypeNames":147,"./rules/LoneAnonymousOperation":148,"./rules/NoFragmentCycles":149,"./rules/NoUndefinedVariables":150,"./rules/NoUnusedFragments":151,"./rules/NoUnusedVariables":152,"./rules/OverlappingFieldsCanBeMerged":153,"./rules/PossibleFragmentSpreads":154,"./rules/ProvidedNonNullArguments":155,"./rules/ScalarLeafs":156,"./rules/SingleFieldSubscriptions":157,"./rules/UniqueArgumentNames":158,"./rules/UniqueDirectivesPerLocation":159,"./rules/UniqueFragmentNames":160,"./rules/UniqueInputFieldNames":161,"./rules/UniqueOperationNames":162,"./rules/UniqueVariableNames":163,"./rules/VariablesAreInputTypes":164,"./rules/VariablesInAllowedPosition":165,"./specifiedRules":166,"./validate":167}],140:[function(require,module,exports){
|
33777
33827
|
'use strict';
|
33778
33828
|
|
33779
33829
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33822,7 +33872,7 @@ function ArgumentsOfCorrectType(context) {
|
|
33822
33872
|
}
|
33823
33873
|
};
|
33824
33874
|
}
|
33825
|
-
},{"../../error":
|
33875
|
+
},{"../../error":87,"../../language/printer":108,"../../utilities/isValidLiteralValue":133}],141:[function(require,module,exports){
|
33826
33876
|
'use strict';
|
33827
33877
|
|
33828
33878
|
Object.defineProperty(exports, "__esModule", {
|
@@ -33889,7 +33939,7 @@ function DefaultValuesOfCorrectType(context) {
|
|
33889
33939
|
}
|
33890
33940
|
};
|
33891
33941
|
}
|
33892
|
-
},{"../../error":
|
33942
|
+
},{"../../error":87,"../../language/printer":108,"../../type/definition":114,"../../utilities/isValidLiteralValue":133}],142:[function(require,module,exports){
|
33893
33943
|
'use strict';
|
33894
33944
|
|
33895
33945
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34012,7 +34062,7 @@ function getSuggestedFieldNames(schema, type, fieldName) {
|
|
34012
34062
|
// Otherwise, must be a Union type, which does not define fields.
|
34013
34063
|
return [];
|
34014
34064
|
}
|
34015
|
-
},{"../../error":
|
34065
|
+
},{"../../error":87,"../../jsutils/quotedOrList":101,"../../jsutils/suggestionList":102,"../../type/definition":114}],143:[function(require,module,exports){
|
34016
34066
|
'use strict';
|
34017
34067
|
|
34018
34068
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34071,7 +34121,7 @@ function FragmentsOnCompositeTypes(context) {
|
|
34071
34121
|
}
|
34072
34122
|
};
|
34073
34123
|
}
|
34074
|
-
},{"../../error":
|
34124
|
+
},{"../../error":87,"../../language/printer":108,"../../type/definition":114,"../../utilities/typeFromAST":137}],144:[function(require,module,exports){
|
34075
34125
|
'use strict';
|
34076
34126
|
|
34077
34127
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34171,7 +34221,7 @@ function KnownArgumentNames(context) {
|
|
34171
34221
|
}
|
34172
34222
|
};
|
34173
34223
|
}
|
34174
|
-
},{"../../error":
|
34224
|
+
},{"../../error":87,"../../jsutils/find":95,"../../jsutils/invariant":96,"../../jsutils/quotedOrList":101,"../../jsutils/suggestionList":102,"../../language/kinds":104}],145:[function(require,module,exports){
|
34175
34225
|
'use strict';
|
34176
34226
|
|
34177
34227
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34283,7 +34333,7 @@ function getDirectiveLocationForASTPath(ancestors) {
|
|
34283
34333
|
return parentNode.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION ? _directives.DirectiveLocation.INPUT_FIELD_DEFINITION : _directives.DirectiveLocation.ARGUMENT_DEFINITION;
|
34284
34334
|
}
|
34285
34335
|
}
|
34286
|
-
},{"../../error":
|
34336
|
+
},{"../../error":87,"../../jsutils/find":95,"../../language/kinds":104,"../../type/directives":115}],146:[function(require,module,exports){
|
34287
34337
|
'use strict';
|
34288
34338
|
|
34289
34339
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34324,7 +34374,7 @@ function KnownFragmentNames(context) {
|
|
34324
34374
|
}
|
34325
34375
|
};
|
34326
34376
|
}
|
34327
|
-
},{"../../error":
|
34377
|
+
},{"../../error":87}],147:[function(require,module,exports){
|
34328
34378
|
'use strict';
|
34329
34379
|
|
34330
34380
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34395,7 +34445,7 @@ function KnownTypeNames(context) {
|
|
34395
34445
|
}
|
34396
34446
|
};
|
34397
34447
|
}
|
34398
|
-
},{"../../error":
|
34448
|
+
},{"../../error":87,"../../jsutils/quotedOrList":101,"../../jsutils/suggestionList":102}],148:[function(require,module,exports){
|
34399
34449
|
'use strict';
|
34400
34450
|
|
34401
34451
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34443,7 +34493,7 @@ function LoneAnonymousOperation(context) {
|
|
34443
34493
|
}
|
34444
34494
|
};
|
34445
34495
|
}
|
34446
|
-
},{"../../error":
|
34496
|
+
},{"../../error":87,"../../language/kinds":104}],149:[function(require,module,exports){
|
34447
34497
|
'use strict';
|
34448
34498
|
|
34449
34499
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34530,7 +34580,7 @@ function NoFragmentCycles(context) {
|
|
34530
34580
|
spreadPathIndexByName[fragmentName] = undefined;
|
34531
34581
|
}
|
34532
34582
|
}
|
34533
|
-
},{"../../error":
|
34583
|
+
},{"../../error":87}],150:[function(require,module,exports){
|
34534
34584
|
'use strict';
|
34535
34585
|
|
34536
34586
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34586,7 +34636,7 @@ function NoUndefinedVariables(context) {
|
|
34586
34636
|
}
|
34587
34637
|
};
|
34588
34638
|
}
|
34589
|
-
},{"../../error":
|
34639
|
+
},{"../../error":87}],151:[function(require,module,exports){
|
34590
34640
|
'use strict';
|
34591
34641
|
|
34592
34642
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34649,7 +34699,7 @@ function NoUnusedFragments(context) {
|
|
34649
34699
|
}
|
34650
34700
|
};
|
34651
34701
|
}
|
34652
|
-
},{"../../error":
|
34702
|
+
},{"../../error":87}],152:[function(require,module,exports){
|
34653
34703
|
'use strict';
|
34654
34704
|
|
34655
34705
|
Object.defineProperty(exports, "__esModule", {
|
@@ -34711,7 +34761,7 @@ function NoUnusedVariables(context) {
|
|
34711
34761
|
}
|
34712
34762
|
};
|
34713
34763
|
}
|
34714
|
-
},{"../../error":
|
34764
|
+
},{"../../error":87}],153:[function(require,module,exports){
|
34715
34765
|
'use strict';
|
34716
34766
|
|
34717
34767
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35269,7 +35319,7 @@ function _pairSetAdd(data, a, b, areMutuallyExclusive) {
|
|
35269
35319
|
}
|
35270
35320
|
map[b] = areMutuallyExclusive;
|
35271
35321
|
}
|
35272
|
-
},{"../../error":
|
35322
|
+
},{"../../error":87,"../../jsutils/find":95,"../../language/kinds":104,"../../language/printer":108,"../../type/definition":114,"../../utilities/typeFromAST":137}],154:[function(require,module,exports){
|
35273
35323
|
'use strict';
|
35274
35324
|
|
35275
35325
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35333,7 +35383,7 @@ function getFragmentType(context, name) {
|
|
35333
35383
|
var frag = context.getFragment(name);
|
35334
35384
|
return frag && (0, _typeFromAST.typeFromAST)(context.getSchema(), frag.typeCondition);
|
35335
35385
|
}
|
35336
|
-
},{"../../error":
|
35386
|
+
},{"../../error":87,"../../utilities/typeComparators":136,"../../utilities/typeFromAST":137}],155:[function(require,module,exports){
|
35337
35387
|
'use strict';
|
35338
35388
|
|
35339
35389
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35421,7 +35471,7 @@ function ProvidedNonNullArguments(context) {
|
|
35421
35471
|
}
|
35422
35472
|
};
|
35423
35473
|
}
|
35424
|
-
},{"../../error":
|
35474
|
+
},{"../../error":87,"../../jsutils/keyMap":99,"../../type/definition":114}],156:[function(require,module,exports){
|
35425
35475
|
'use strict';
|
35426
35476
|
|
35427
35477
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35473,7 +35523,7 @@ function ScalarLeafs(context) {
|
|
35473
35523
|
}
|
35474
35524
|
};
|
35475
35525
|
}
|
35476
|
-
},{"../../error":
|
35526
|
+
},{"../../error":87,"../../type/definition":114}],157:[function(require,module,exports){
|
35477
35527
|
'use strict';
|
35478
35528
|
|
35479
35529
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35513,7 +35563,7 @@ function SingleFieldSubscriptions(context) {
|
|
35513
35563
|
}
|
35514
35564
|
};
|
35515
35565
|
}
|
35516
|
-
},{"../../error":
|
35566
|
+
},{"../../error":87}],158:[function(require,module,exports){
|
35517
35567
|
'use strict';
|
35518
35568
|
|
35519
35569
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35563,7 +35613,7 @@ function UniqueArgumentNames(context) {
|
|
35563
35613
|
}
|
35564
35614
|
};
|
35565
35615
|
}
|
35566
|
-
},{"../../error":
|
35616
|
+
},{"../../error":87}],159:[function(require,module,exports){
|
35567
35617
|
'use strict';
|
35568
35618
|
|
35569
35619
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35613,7 +35663,7 @@ function UniqueDirectivesPerLocation(context) {
|
|
35613
35663
|
}
|
35614
35664
|
};
|
35615
35665
|
}
|
35616
|
-
},{"../../error":
|
35666
|
+
},{"../../error":87}],160:[function(require,module,exports){
|
35617
35667
|
'use strict';
|
35618
35668
|
|
35619
35669
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35659,7 +35709,7 @@ function UniqueFragmentNames(context) {
|
|
35659
35709
|
}
|
35660
35710
|
};
|
35661
35711
|
}
|
35662
|
-
},{"../../error":
|
35712
|
+
},{"../../error":87}],161:[function(require,module,exports){
|
35663
35713
|
'use strict';
|
35664
35714
|
|
35665
35715
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35714,7 +35764,7 @@ function UniqueInputFieldNames(context) {
|
|
35714
35764
|
}
|
35715
35765
|
};
|
35716
35766
|
}
|
35717
|
-
},{"../../error":
|
35767
|
+
},{"../../error":87}],162:[function(require,module,exports){
|
35718
35768
|
'use strict';
|
35719
35769
|
|
35720
35770
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35763,7 +35813,7 @@ function UniqueOperationNames(context) {
|
|
35763
35813
|
}
|
35764
35814
|
};
|
35765
35815
|
}
|
35766
|
-
},{"../../error":
|
35816
|
+
},{"../../error":87}],163:[function(require,module,exports){
|
35767
35817
|
'use strict';
|
35768
35818
|
|
35769
35819
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35809,7 +35859,7 @@ function UniqueVariableNames(context) {
|
|
35809
35859
|
}
|
35810
35860
|
};
|
35811
35861
|
}
|
35812
|
-
},{"../../error":
|
35862
|
+
},{"../../error":87}],164:[function(require,module,exports){
|
35813
35863
|
'use strict';
|
35814
35864
|
|
35815
35865
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35859,7 +35909,7 @@ function VariablesAreInputTypes(context) {
|
|
35859
35909
|
}
|
35860
35910
|
};
|
35861
35911
|
}
|
35862
|
-
},{"../../error":
|
35912
|
+
},{"../../error":87,"../../language/printer":108,"../../type/definition":114,"../../utilities/typeFromAST":137}],165:[function(require,module,exports){
|
35863
35913
|
'use strict';
|
35864
35914
|
|
35865
35915
|
Object.defineProperty(exports, "__esModule", {
|
@@ -35935,7 +35985,7 @@ function VariablesInAllowedPosition(context) {
|
|
35935
35985
|
function effectiveType(varType, varDef) {
|
35936
35986
|
return !varDef.defaultValue || varType instanceof _definition.GraphQLNonNull ? varType : new _definition.GraphQLNonNull(varType);
|
35937
35987
|
}
|
35938
|
-
},{"../../error":
|
35988
|
+
},{"../../error":87,"../../type/definition":114,"../../utilities/typeComparators":136,"../../utilities/typeFromAST":137}],166:[function(require,module,exports){
|
35939
35989
|
'use strict';
|
35940
35990
|
|
35941
35991
|
Object.defineProperty(exports, "__esModule", {
|
@@ -36087,7 +36137,7 @@ var specifiedRules = exports.specifiedRules = [_UniqueOperationNames.UniqueOpera
|
|
36087
36137
|
|
36088
36138
|
|
36089
36139
|
// Spec Section: "Lone Anonymous Operation"
|
36090
|
-
},{"./rules/ArgumentsOfCorrectType":
|
36140
|
+
},{"./rules/ArgumentsOfCorrectType":140,"./rules/DefaultValuesOfCorrectType":141,"./rules/FieldsOnCorrectType":142,"./rules/FragmentsOnCompositeTypes":143,"./rules/KnownArgumentNames":144,"./rules/KnownDirectives":145,"./rules/KnownFragmentNames":146,"./rules/KnownTypeNames":147,"./rules/LoneAnonymousOperation":148,"./rules/NoFragmentCycles":149,"./rules/NoUndefinedVariables":150,"./rules/NoUnusedFragments":151,"./rules/NoUnusedVariables":152,"./rules/OverlappingFieldsCanBeMerged":153,"./rules/PossibleFragmentSpreads":154,"./rules/ProvidedNonNullArguments":155,"./rules/ScalarLeafs":156,"./rules/SingleFieldSubscriptions":157,"./rules/UniqueArgumentNames":158,"./rules/UniqueDirectivesPerLocation":159,"./rules/UniqueFragmentNames":160,"./rules/UniqueInputFieldNames":161,"./rules/UniqueOperationNames":162,"./rules/UniqueVariableNames":163,"./rules/VariablesAreInputTypes":164,"./rules/VariablesInAllowedPosition":165}],167:[function(require,module,exports){
|
36091
36141
|
'use strict';
|
36092
36142
|
|
36093
36143
|
Object.defineProperty(exports, "__esModule", {
|
@@ -36320,7 +36370,7 @@ var ValidationContext = exports.ValidationContext = function () {
|
|
36320
36370
|
|
36321
36371
|
return ValidationContext;
|
36322
36372
|
}();
|
36323
|
-
},{"../error":
|
36373
|
+
},{"../error":87,"../jsutils/invariant":96,"../language/kinds":104,"../language/visitor":110,"../type/schema":119,"../utilities/TypeInfo":120,"./specifiedRules":166}],168:[function(require,module,exports){
|
36324
36374
|
/**
|
36325
36375
|
* Copyright (c) 2016, Lee Byron
|
36326
36376
|
* All rights reserved.
|
@@ -36978,7 +37028,7 @@ function forAwaitEach(source, callback, thisArg) {
|
|
36978
37028
|
}
|
36979
37029
|
exports.forAwaitEach = forAwaitEach
|
36980
37030
|
|
36981
|
-
},{}],
|
37031
|
+
},{}],169:[function(require,module,exports){
|
36982
37032
|
(function (global){
|
36983
37033
|
/**
|
36984
37034
|
* marked - a markdown parser
|
@@ -38268,7 +38318,7 @@ if (typeof module !== 'undefined' && typeof exports === 'object') {
|
|
38268
38318
|
}());
|
38269
38319
|
|
38270
38320
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
38271
|
-
},{}],
|
38321
|
+
},{}],170:[function(require,module,exports){
|
38272
38322
|
// shim for using process in browser
|
38273
38323
|
var process = module.exports = {};
|
38274
38324
|
|
@@ -38454,7 +38504,7 @@ process.chdir = function (dir) {
|
|
38454
38504
|
};
|
38455
38505
|
process.umask = function() { return 0; };
|
38456
38506
|
|
38457
|
-
},{}],
|
38507
|
+
},{}],171:[function(require,module,exports){
|
38458
38508
|
(function (process){
|
38459
38509
|
/**
|
38460
38510
|
* Copyright 2013-present, Facebook, Inc.
|
@@ -38519,7 +38569,7 @@ function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
|
|
38519
38569
|
module.exports = checkPropTypes;
|
38520
38570
|
|
38521
38571
|
}).call(this,require('_process'))
|
38522
|
-
},{"./lib/ReactPropTypesSecret":
|
38572
|
+
},{"./lib/ReactPropTypesSecret":175,"_process":170,"fbjs/lib/invariant":67,"fbjs/lib/warning":68}],172:[function(require,module,exports){
|
38523
38573
|
/**
|
38524
38574
|
* Copyright 2013-present, Facebook, Inc.
|
38525
38575
|
* All rights reserved.
|
@@ -38575,7 +38625,7 @@ module.exports = function() {
|
|
38575
38625
|
return ReactPropTypes;
|
38576
38626
|
};
|
38577
38627
|
|
38578
|
-
},{"fbjs/lib/emptyFunction":
|
38628
|
+
},{"fbjs/lib/emptyFunction":66,"fbjs/lib/invariant":67}],173:[function(require,module,exports){
|
38579
38629
|
(function (process){
|
38580
38630
|
/**
|
38581
38631
|
* Copyright 2013-present, Facebook, Inc.
|
@@ -39057,7 +39107,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
|
|
39057
39107
|
};
|
39058
39108
|
|
39059
39109
|
}).call(this,require('_process'))
|
39060
|
-
},{"./checkPropTypes":
|
39110
|
+
},{"./checkPropTypes":171,"./lib/ReactPropTypesSecret":175,"_process":170,"fbjs/lib/emptyFunction":66,"fbjs/lib/invariant":67,"fbjs/lib/warning":68}],174:[function(require,module,exports){
|
39061
39111
|
(function (process){
|
39062
39112
|
/**
|
39063
39113
|
* Copyright 2013-present, Facebook, Inc.
|
@@ -39091,7 +39141,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
39091
39141
|
}
|
39092
39142
|
|
39093
39143
|
}).call(this,require('_process'))
|
39094
|
-
},{"./factoryWithThrowingShims":
|
39144
|
+
},{"./factoryWithThrowingShims":172,"./factoryWithTypeCheckers":173,"_process":170}],175:[function(require,module,exports){
|
39095
39145
|
/**
|
39096
39146
|
* Copyright 2013-present, Facebook, Inc.
|
39097
39147
|
* All rights reserved.
|
@@ -39107,7 +39157,7 @@ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
39107
39157
|
|
39108
39158
|
module.exports = ReactPropTypesSecret;
|
39109
39159
|
|
39110
|
-
},{}],
|
39160
|
+
},{}],176:[function(require,module,exports){
|
39111
39161
|
if (typeof Object.create === 'function') {
|
39112
39162
|
// implementation from standard node.js 'util' module
|
39113
39163
|
module.exports = function inherits(ctor, superCtor) {
|
@@ -39132,14 +39182,14 @@ if (typeof Object.create === 'function') {
|
|
39132
39182
|
}
|
39133
39183
|
}
|
39134
39184
|
|
39135
|
-
},{}],
|
39185
|
+
},{}],177:[function(require,module,exports){
|
39136
39186
|
module.exports = function isBuffer(arg) {
|
39137
39187
|
return arg && typeof arg === 'object'
|
39138
39188
|
&& typeof arg.copy === 'function'
|
39139
39189
|
&& typeof arg.fill === 'function'
|
39140
39190
|
&& typeof arg.readUInt8 === 'function';
|
39141
39191
|
}
|
39142
|
-
},{}],
|
39192
|
+
},{}],178:[function(require,module,exports){
|
39143
39193
|
(function (process,global){
|
39144
39194
|
// Copyright Joyent, Inc. and other Node contributors.
|
39145
39195
|
//
|
@@ -39729,5 +39779,5 @@ function hasOwnProperty(obj, prop) {
|
|
39729
39779
|
}
|
39730
39780
|
|
39731
39781
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
39732
|
-
},{"./support/isBuffer":
|
39782
|
+
},{"./support/isBuffer":177,"_process":170,"inherits":176}]},{},[22])(22)
|
39733
39783
|
});
|