graphql-yoga
Version:
38 lines (37 loc) • 2.07 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeferStreamDirectiveOnRootFieldRule = void 0;
const graphql_1 = require("graphql");
const defer_js_1 = require("../directives/defer.js");
const stream_js_1 = require("../directives/stream.js");
/**
* Stream directive on list field
*
* A GraphQL document is only valid if defer directives are not used on root mutation or subscription types.
*/
function DeferStreamDirectiveOnRootFieldRule(context) {
return {
Directive(node) {
const mutationType = context.getSchema().getMutationType();
const subscriptionType = context.getSchema().getSubscriptionType();
const parentType = context.getParentType();
if (parentType && node.name.value === defer_js_1.GraphQLDeferDirective.name) {
if (mutationType && parentType === mutationType) {
context.reportError(new graphql_1.GraphQLError(`Defer directive cannot be used on root mutation type "${parentType.name}".`, { nodes: node }));
}
if (subscriptionType && parentType === subscriptionType) {
context.reportError(new graphql_1.GraphQLError(`Defer directive cannot be used on root subscription type "${parentType.name}".`, { nodes: node }));
}
}
if (parentType && node.name.value === stream_js_1.GraphQLStreamDirective.name) {
if (mutationType && parentType === mutationType) {
context.reportError(new graphql_1.GraphQLError(`Stream directive cannot be used on root mutation type "${parentType.name}".`, { nodes: node }));
}
if (subscriptionType && parentType === subscriptionType) {
context.reportError(new graphql_1.GraphQLError(`Stream directive cannot be used on root subscription type "${parentType.name}".`, { nodes: node }));
}
}
},
};
}
exports.DeferStreamDirectiveOnRootFieldRule = DeferStreamDirectiveOnRootFieldRule;
;