mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
378 B
TypeScript
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;
|