Files
Home_Buying_App/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts
jackbeeby b412dfe2ca Initialisation
Added the packages and files for the backend server
2024-12-15 17:48:45 +11:00

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;