mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { ValidationContext } from '../ValidationContext';
|
|
|
|
/**
|
|
* No unused variables
|
|
*
|
|
* A GraphQL operation is only valid if all variables defined by an operation
|
|
* are used, either directly or within a spread fragment.
|
|
*/
|
|
export function NoUnusedVariablesRule(context: ValidationContext): ASTVisitor;
|