UNPKG

344 BTypeScriptView Raw
1/// <reference types="@types/graphql" />
2import { GraphQLSchema } from 'graphql/type/schema';
3import { FragmentDefinitionNode } from 'graphql/language/ast';
4import { CodegenDocument } from './interfaces';
5export declare const handleFragment: (schema: GraphQLSchema, fragmentNode: FragmentDefinitionNode, primitivesMap: any) => CodegenDocument;