mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
377 B
TypeScript
13 lines
377 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { 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.
|
|
*/
|
|
export function NoUndefinedVariablesRule(
|
|
context: ValidationContext,
|
|
): ASTVisitor;
|