@graphql-tools/delegate
Version:
A set of utils for faster development of GraphQL tools
6 lines (5 loc) • 590 B
TypeScript
import { GraphQLSchema, GraphQLObjectType, OperationTypeNode } from 'graphql';
import { ExecutionRequest } from '@graphql-tools/utils';
import { ICreateRequest } from './types.js';
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;