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