@omnigraph/thrift
Version:
11 lines (10 loc) • 478 B
text/typescript
import { GraphQLThriftLoaderOptions, loadNonExecutableGraphQLSchemaFromIDL } from './schema.cjs';
export declare function loadThriftSubgraph(name: string, options: Omit<GraphQLThriftLoaderOptions, 'subgraphName'>): ({ cwd, fetch }: {
cwd: string;
fetch: typeof fetch;
}) => {
name: string;
schema$: Promise<import("graphql").GraphQLSchema>;
};
export { loadNonExecutableGraphQLSchemaFromIDL };
export { getThriftExecutor } from '@graphql-mesh/transport-thrift';