UNPKG

graphql-document-collector

Version:

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

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