UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

13 lines (11 loc) 378 B
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;