@graphql-mesh/thrift
Version:
35 lines (34 loc) • 1.35 kB
JavaScript
import { PredefinedProxyOptions } from '@graphql-mesh/store';
import { getThriftExecutor, loadNonExecutableGraphQLSchemaFromIDL } from '@omnigraph/thrift';
export default class ThriftHandler {
constructor({ config, baseDir, store, importFn, logger, name, }) {
this.subgraphName = name;
this.config = config;
this.baseDir = baseDir;
this.sdl = store.proxy('schemaWithAnnotations', 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(() => 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: getThriftExecutor(schema),
};
}
}