@graphql-mesh/serve-runtime
Version:
12 lines (11 loc) • 613 B
TypeScript
import type { GraphQLSchema } from 'graphql';
import type { OnSubgraphExecuteHook } from '@graphql-mesh/fusion-runtime';
import type { Executor } from '@graphql-tools/utils';
import type { GatewayConfigContext, GatewayConfigProxy } from './types.js';
export declare function getProxyExecutor<TContext>({ config, configContext, getSchema, onSubgraphExecuteHooks, disposableStack, }: {
config: GatewayConfigProxy<TContext>;
configContext: GatewayConfigContext;
getSchema: () => GraphQLSchema;
onSubgraphExecuteHooks: OnSubgraphExecuteHook[];
disposableStack: AsyncDisposableStack;
}): Executor;