UNPKG

1.29 kBJavaScriptView Raw
1import { GraphQLError } from "../../error/GraphQLError.mjs";
2
3/**
4 * Lone Schema definition
5 *
6 * A GraphQL document is only valid if it contains only one schema definition.
7 */
8export function LoneSchemaDefinitionRule(context) {
9 var _ref, _ref2, _oldSchema$astNode;
10
11 var oldSchema = context.getSchema();
12 var alreadyDefined = (_ref = (_ref2 = (_oldSchema$astNode = oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.astNode) !== null && _oldSchema$astNode !== void 0 ? _oldSchema$astNode : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getQueryType()) !== null && _ref2 !== void 0 ? _ref2 : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getMutationType()) !== null && _ref !== void 0 ? _ref : oldSchema === null || oldSchema === void 0 ? void 0 : oldSchema.getSubscriptionType();
13 var schemaDefinitionsCount = 0;
14 return {
15 SchemaDefinition: function SchemaDefinition(node) {
16 if (alreadyDefined) {
17 context.reportError(new GraphQLError('Cannot define a new schema within a schema extension.', node));
18 return;
19 }
20
21 if (schemaDefinitionsCount > 0) {
22 context.reportError(new GraphQLError('Must provide only one schema definition.', node));
23 }
24
25 ++schemaDefinitionsCount;
26 }
27 };
28}