11 lines
350 B
TypeScript
11 lines
350 B
TypeScript
import type { ASTVisitor } from '../../language/visitor';
|
|
import type { SDLValidationContext } from '../ValidationContext';
|
|
/**
|
|
* Unique field definition names
|
|
*
|
|
* A GraphQL complex type is only valid if all its fields are uniquely named.
|
|
*/
|
|
export declare function UniqueFieldDefinitionNamesRule(
|
|
context: SDLValidationContext,
|
|
): ASTVisitor;
|