NoUnusedVariablesRule.d.ts 448 B

12345678910111213
  1. import type { ASTVisitor } from '../../language/visitor';
  2. import 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. */
  11. export declare function NoUnusedVariablesRule(
  12. context: ValidationContext,
  13. ): ASTVisitor;