LoneSchemaDefinitionRule.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.LoneSchemaDefinitionRule = LoneSchemaDefinitionRule;
  6. var _GraphQLError = require("../../error/GraphQLError.js");
  7. /**
  8. * Lone Schema definition
  9. *
  10. * A GraphQL document is only valid if it contains only one schema definition.
  11. */
  12. function LoneSchemaDefinitionRule(context) {
  13. var _ref, _ref2, _oldSchema$astNode;
  14. var oldSchema = context.getSchema();
  15. 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();
  16. var schemaDefinitionsCount = 0;
  17. return {
  18. SchemaDefinition: function SchemaDefinition(node) {
  19. if (alreadyDefined) {
  20. context.reportError(new _GraphQLError.GraphQLError('Cannot define a new schema within a schema extension.', node));
  21. return;
  22. }
  23. if (schemaDefinitionsCount > 0) {
  24. context.reportError(new _GraphQLError.GraphQLError('Must provide only one schema definition.', node));
  25. }
  26. ++schemaDefinitionsCount;
  27. }
  28. };
  29. }