mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
13 lines
377 B
TypeScript
13 lines
377 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { ValidationContext } from '../ValidationContext';
|
|
|
|
/**
|
|
* No undefined variables
|
|
*
|
|
* A GraphQL operation is only valid if all variables encountered, both directly
|
|
* and via fragment spreads, are defined by that operation.
|
|
*/
|
|
export function NoUndefinedVariablesRule(
|
|
context: ValidationContext,
|
|
): ASTVisitor;
|