1 | import { GraphQLSchema, GraphQLResolveInfo, GraphQLOutputType } from 'graphql';
|
2 | import { Operation } from '../types';
|
3 | export declare function isScalar(t: GraphQLOutputType): boolean;
|
4 | export declare function getTypeForRootFieldName(rootFieldName: string, operation: Operation, schema: GraphQLSchema): GraphQLOutputType;
|
5 | export declare function forwardTo(bindingName: string): <PARENT, ARGS, CONTEXT>(parent: PARENT, args: ARGS, context: CONTEXT, info: GraphQLResolveInfo) => any;
|
6 | export declare function printDocumentFromInfo(info: GraphQLResolveInfo): string;
|