Swap-Aggregator-Subgraph/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

13 lines
378 B
TypeScript

import { ASTVisitor } from '../../language/visitor';
import { ValidationContext, SDLValidationContext } from '../ValidationContext';
/**
* Known directives
*
* A GraphQL document is only valid if all `@directives` are known by the
* schema and legally positioned.
*/
export function KnownDirectivesRule(
context: ValidationContext | SDLValidationContext,
): ASTVisitor;