@graphql-mesh/transport-soap
Version:
5 lines (4 loc) • 304 B
TypeScript
import type { GraphQLSchema } from 'graphql';
import type { MeshFetch } from '@graphql-mesh/types';
import { type Executor } from '@graphql-tools/utils';
export declare function createExecutorFromSchemaAST(schema: GraphQLSchema, fetchFn?: MeshFetch, operationHeaders?: Record<string, string>): Executor;