UNPKG

@omnigraph/thrift

Version:
20 lines (19 loc) 938 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getThriftExecutor = exports.loadNonExecutableGraphQLSchemaFromIDL = void 0; exports.loadThriftSubgraph = loadThriftSubgraph; const schema_js_1 = require("./schema.js"); Object.defineProperty(exports, "loadNonExecutableGraphQLSchemaFromIDL", { enumerable: true, get: function () { return schema_js_1.loadNonExecutableGraphQLSchemaFromIDL; } }); function loadThriftSubgraph(name, options) { return ({ cwd, fetch }) => ({ name, schema$: (0, schema_js_1.loadNonExecutableGraphQLSchemaFromIDL)({ fetchFn: fetch, baseDir: cwd, subgraphName: name, ...options, }), }); } var transport_thrift_1 = require("@graphql-mesh/transport-thrift"); Object.defineProperty(exports, "getThriftExecutor", { enumerable: true, get: function () { return transport_thrift_1.getThriftExecutor; } });