blob: dcb6af613845caf404556ca057413e260321cfc8 [file] [log] [blame]
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;