@omnigraph/openapi
Version:
15 lines (14 loc) • 704 B
text/typescript
import { MeshFetch } from '@graphql-mesh/types';
import { OpenAPILoaderOptions } from './types.cjs';
export { loadGraphQLSchemaFromOpenAPI as default } from './loadGraphQLSchemaFromOpenAPI.cjs';
export * from './loadGraphQLSchemaFromOpenAPI.cjs';
export { getJSONSchemaOptionsFromOpenAPIOptions } from './getJSONSchemaOptionsFromOpenAPIOptions.cjs';
export { OpenAPILoaderOptions } from './types.cjs';
export declare function loadOpenAPISubgraph(name: string, options: OpenAPILoaderOptions): (ctx: {
fetch: MeshFetch;
cwd: string;
}) => {
name: string;
schema$: Promise<import("graphql").GraphQLSchema>;
};
export { processDirectives, getSubgraphExecutor } from '@omnigraph/json-schema';