@omnigraph/thrift
Version:
13 lines (12 loc) • 563 B
TypeScript
import type { MeshFetch } from '@graphql-mesh/types';
import type { GraphQLThriftLoaderOptions } from './schema.js';
import { loadNonExecutableGraphQLSchemaFromIDL } from './schema.js';
export declare function loadThriftSubgraph(name: string, options: Omit<GraphQLThriftLoaderOptions, 'subgraphName'>): ({ cwd, fetch }: {
cwd: string;
fetch: MeshFetch;
}) => {
name: string;
schema$: Promise<import("graphql").GraphQLSchema>;
};
export { loadNonExecutableGraphQLSchemaFromIDL };
export { getThriftExecutor } from '@graphql-mesh/transport-thrift';