UNPKG

@graphql-tools/delegate

Version:

A set of utils for faster development of GraphQL tools

10 lines (9 loc) 422 B
import { GraphQLResolveInfo } from 'graphql'; import { ExternalObject } from './types.cjs'; /** * Resolver that knows how to: * a) handle aliases for proxied schemas * b) handle errors from proxied schemas * c) handle external to internal enum conversion */ export declare function defaultMergedResolver(parent: ExternalObject, args: Record<string, any>, context: Record<string, any>, info: GraphQLResolveInfo): any;