17 lines
502 B
TypeScript
17 lines
502 B
TypeScript
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;
|