@graphql-mesh/thrift
Version:
38 lines (37 loc) • 1.43 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const store_1 = require("@graphql-mesh/store");
const thrift_1 = require("@omnigraph/thrift");
class ThriftHandler {
constructor({ config, baseDir, store, importFn, logger, name, }) {
this.subgraphName = name;
this.config = config;
this.baseDir = baseDir;
this.sdl = store.proxy('schemaWithAnnotations', store_1.PredefinedProxyOptions.GraphQLSchemaWithDiffing);
this.importFn = importFn;
this.logger = logger;
}
buildEndpointUrl() {
const { hostName, port, path, https } = this.config;
const protocol = https ? 'https' : 'http';
return `${protocol}://${hostName}:${port}${path}`;
}
async getMeshSource({ fetchFn }) {
const schema = await this.sdl.getWithSet(() => (0, thrift_1.loadNonExecutableGraphQLSchemaFromIDL)({
subgraphName: this.subgraphName,
source: this.config.idl,
endpoint: this.buildEndpointUrl(),
operationHeaders: this.config.operationHeaders,
serviceName: this.config.serviceName,
baseDir: this.baseDir,
fetchFn,
logger: this.logger,
importFn: this.importFn,
}));
return {
schema,
executor: (0, thrift_1.getThriftExecutor)(schema),
};
}
}
exports.default = ThriftHandler;
;