@graphql-tools/graphql
Version:
Fork of GraphQL.js
27 lines (26 loc) • 914 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KnownFragmentNamesRule = void 0;
const GraphQLError_js_1 = require("../../error/GraphQLError.js");
/**
* Known fragment names
*
* A GraphQL document is only valid if all `...Fragment` fragment spreads refer
* to fragments defined in the same document.
*
* See https://spec.graphql.org/draft/#sec-Fragment-spread-target-defined
*/
function KnownFragmentNamesRule(context) {
return {
FragmentSpread(node) {
const fragmentName = node.name.value;
const fragment = context.getFragment(fragmentName);
if (!fragment) {
context.reportError(new GraphQLError_js_1.GraphQLError(`Unknown fragment "${fragmentName}".`, {
nodes: node.name,
}));
}
},
};
}
exports.KnownFragmentNamesRule = KnownFragmentNamesRule;