mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00: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;
|