mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
22 lines
779 B
TypeScript
22 lines
779 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/SingleFieldSubscriptionsRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
|
|
/**
|
|
* Subscriptions must only include one field.
|
|
*
|
|
* A GraphQL subscription is valid only if it contains a single root field.
|
|
*/
|
|
export function SingleFieldSubscriptionsRule(context) {
|
|
return {
|
|
OperationDefinition(node) {
|
|
if (node.operation === 'subscription') {
|
|
if (node.selectionSet.selections.length !== 1) {
|
|
context.reportError(new GraphQLError(node.name ? `Subscription "${node.name.value}" must select only one top level field.` : 'Anonymous Subscription must select only one top level field.', node.selectionSet.selections.slice(1)));
|
|
}
|
|
}
|
|
}
|
|
|
|
};
|
|
} |