github-pages-deploy-action/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts
2020-03-06 22:45:40 -05:00

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;