UNPKG

448 BTypeScriptView Raw
1import type { ASTVisitor } from '../../language/visitor';
2import type { ValidationContext } from '../ValidationContext';
3/**
4 * No unused variables
5 *
6 * A GraphQL operation is only valid if all variables defined by an operation
7 * are used, either directly or within a spread fragment.
8 *
9 * See https://spec.graphql.org/draft/#sec-All-Variables-Used
10 */
11export declare function NoUnusedVariablesRule(
12 context: ValidationContext,
13): ASTVisitor;