@graphql-mesh/transport-rest
Version:
10 lines (9 loc) • 474 B
TypeScript
import { TransportExecutorFactoryFn } from '@graphql-mesh/transport-common';
export interface RESTTransportOptions {
timeout?: number;
queryParams?: Record<string, string>;
}
export declare const getSubgraphExecutor: TransportExecutorFactoryFn<'rest', RESTTransportOptions>;
export { processDirectives } from './directives/process.js';
export type { ProcessDirectiveArgs } from './directives/process.js';
export { processScalarType } from './directives/scalars.js';