LoneSchemaDefinitionRule.mjs 1.3 KB

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