mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
404 B
TypeScript
13 lines
404 B
TypeScript
|
import { ASTVisitor } from '../../language/visitor';
|
||
|
import { ASTValidationContext } from '../ValidationContext';
|
||
|
|
||
|
/**
|
||
|
* Lone anonymous operation
|
||
|
*
|
||
|
* A GraphQL document is only valid if when it contains an anonymous operation
|
||
|
* (the query short-hand) that it contains only that one operation definition.
|
||
|
*/
|
||
|
export function LoneAnonymousOperationRule(
|
||
|
context: ASTValidationContext,
|
||
|
): ASTVisitor;
|