You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
import { ValidationContext, SDLValidationContext } from '../ValidationContext';
|
|
import { ASTVisitor } from '../../language/visitor';
|
|
|
|
/**
|
|
* Known argument names
|
|
*
|
|
* A GraphQL field is only valid if all supplied arguments are defined by
|
|
* that field.
|
|
*/
|
|
export function KnownArgumentNamesRule(context: ValidationContext): ASTVisitor;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
export function KnownArgumentNamesOnDirectivesRule(
|
|
context: ValidationContext | SDLValidationContext,
|
|
): ASTVisitor;
|