UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

17 lines (14 loc) 502 B
import Maybe from '../../tsutils/Maybe'; import { ASTVisitor } from '../../language/visitor'; import { ValidationContext } from '../ValidationContext'; export function undefinedVarMessage( varName: string, opName: Maybe<string>, ): string; /** * No undefined variables * * A GraphQL operation is only valid if all variables encountered, both directly * and via fragment spreads, are defined by that operation. */ export function NoUndefinedVariables(context: ValidationContext): ASTVisitor;