UNPKG

378 BTypeScriptView Raw
1import { ASTVisitor } from '../../language/visitor';
2import { ValidationContext, SDLValidationContext } from '../ValidationContext';
3
4/**
5 * Known directives
6 *
7 * A GraphQL document is only valid if all `@directives` are known by the
8 * schema and legally positioned.
9 */
10export function KnownDirectivesRule(
11 context: ValidationContext | SDLValidationContext,
12): ASTVisitor;