UNPKG

@graphql-tools/delegate

Version:

A set of utils for faster development of GraphQL tools

6 lines (5 loc) 591 B
import { GraphQLSchema, GraphQLObjectType, OperationTypeNode } from 'graphql'; import { ExecutionRequest } from '@graphql-tools/utils'; import { ICreateRequest } from './types.cjs'; export declare function getDelegatingOperation(parentType: GraphQLObjectType, schema: GraphQLSchema): OperationTypeNode; export declare function createRequest({ sourceSchema, sourceParentType, sourceFieldName, fragments, variableDefinitions, variableValues, targetRootValue, targetOperationName, targetOperation, targetFieldName, selectionSet, fieldNodes, context, info, }: ICreateRequest): ExecutionRequest;