@graphql-mesh/transport-http
Version:
5 lines (4 loc) • 376 B
TypeScript
import { TransportExecutorFactoryFn } from '@graphql-mesh/transport-common';
import { HTTPExecutorOptions } from '@graphql-tools/executor-http';
export type HTTPTransportOptions = Pick<HTTPExecutorOptions, 'useGETForQueries' | 'method' | 'timeout' | 'credentials' | 'retry'>;
export declare const getSubgraphExecutor: TransportExecutorFactoryFn<'http', HTTPTransportOptions>;