github-pages-deploy-action/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts

13 lines
378 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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;