UNPKG

@graphql-tools/delegate

Version:

A set of utils for faster development of GraphQL tools

7 lines (6 loc) 289 B
import { DocumentNode, FragmentDefinitionNode, OperationDefinitionNode } from 'graphql'; export declare function getDocumentMetadata(document: DocumentNode): { operations: Array<OperationDefinitionNode>; fragments: Array<FragmentDefinitionNode>; fragmentNames: Set<string>; };