mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { SDLValidationContext } from '../ValidationContext';
|
|
|
|
/**
|
|
* Unique field definition names
|
|
*
|
|
* A GraphQL complex type is only valid if all its fields are uniquely named.
|
|
*/
|
|
export function UniqueFieldDefinitionNamesRule(
|
|
context: SDLValidationContext,
|
|
): ASTVisitor;
|