UNPKG

@graphql-tools/delegate

Version:

A set of utils for faster development of GraphQL tools

7 lines (6 loc) 650 B
import { GraphQLSchema } from 'graphql'; import { Executor } from '@graphql-tools/utils'; import { IDelegateToSchemaOptions, IDelegateRequestOptions } from './types.cjs'; export declare function delegateToSchema<TContext extends Record<string, any> = Record<string, any>, TArgs extends Record<string, any> = any>(options: IDelegateToSchemaOptions<TContext, TArgs>): any; export declare function delegateRequest<TContext extends Record<string, any> = Record<string, any>, TArgs extends Record<string, any> = any>(options: IDelegateRequestOptions<TContext, TArgs>): any; export declare const createDefaultExecutor: (schema: GraphQLSchema) => Executor;