UNPKG

graphql-document-collector

Version:

Load up smartly, in one location, all of the GraphQL queries/mutations/subscriptions of your project

8 lines (7 loc) 209 B
import { DocumentNode, NameNode } from 'graphql'; export interface DocumentDirectory { kind: 'DocumentDirectory'; name: NameNode; documents: DocumentNode[]; directories: DocumentDirectory[]; }