UNPKG

417 BTypeScriptView Raw
1import { GraphQLResolveInfo } from 'graphql';
2import { ExternalObject } from './types';
3/**
4 * Resolver that knows how to:
5 * a) handle aliases for proxied schemas
6 * b) handle errors from proxied schemas
7 * c) handle external to internal enum coversion
8 */
9export declare function defaultMergedResolver(parent: ExternalObject, args: Record<string, any>, context: Record<string, any>, info: GraphQLResolveInfo): any;