UNPKG

@graphql-tools/graphql

Version:
43 lines (42 loc) 1.49 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UniqueInputFieldNamesRule = void 0; const invariant_js_1 = require("../../jsutils/invariant.js"); const GraphQLError_js_1 = require("../../error/GraphQLError.js"); /** * Unique input field names * * A GraphQL input object value is only valid if all supplied fields are * uniquely named. * * See https://spec.graphql.org/draft/#sec-Input-Object-Field-Uniqueness */ function UniqueInputFieldNamesRule(context) { const knownNameStack = []; let knownNames = Object.create(null); return { ObjectValue: { enter() { knownNameStack.push(knownNames); knownNames = Object.create(null); }, leave() { const prevKnownNames = knownNameStack.pop(); (0, invariant_js_1.invariant)(prevKnownNames != null); knownNames = prevKnownNames; }, }, ObjectField(node) { const fieldName = node.name.value; if (knownNames[fieldName]) { context.reportError(new GraphQLError_js_1.GraphQLError(`There can be only one input field named "${fieldName}".`, { nodes: [knownNames[fieldName], node.name], })); } else { knownNames[fieldName] = node.name; } }, }; } exports.UniqueInputFieldNamesRule = UniqueInputFieldNamesRule;