Sha256: f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b
Contents?: true
Size: 448 Bytes
Versions: 26
Compression:
Stored size: 448 Bytes
Contents
import type { ASTVisitor } from '../../language/visitor'; import type { 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. * * See https://spec.graphql.org/draft/#sec-All-Variables-Used */ export declare function NoUnusedVariablesRule( context: ValidationContext, ): ASTVisitor;
Version data entries
26 entries across 26 versions & 1 rubygems