Sha256: 8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68
Contents?: true
Size: 652 Bytes
Versions: 26
Compression:
Stored size: 652 Bytes
Contents
import type { ASTVisitor } from '../../language/visitor'; import type { SDLValidationContext, ValidationContext, } from '../ValidationContext'; /** * Known argument names * * A GraphQL field is only valid if all supplied arguments are defined by * that field. * * See https://spec.graphql.org/draft/#sec-Argument-Names * See https://spec.graphql.org/draft/#sec-Directives-Are-In-Valid-Locations */ export declare function KnownArgumentNamesRule( context: ValidationContext, ): ASTVisitor; /** * @internal */ export declare function KnownArgumentNamesOnDirectivesRule( context: ValidationContext | SDLValidationContext, ): ASTVisitor;
Version data entries
26 entries across 26 versions & 1 rubygems