UNPKG

@graphql-mesh/transport-thrift

Version:
79 lines (78 loc) 3.72 kB
import { getInterpolatedHeadersFactory } from '@graphql-mesh/string-interpolation'; import { getOperationsAndFragments, getRootFieldsWithArgs, projectResultBySelectionSet, } from '@graphql-mesh/utils'; import { getDirectiveExtensions, getRootTypeMap, } from '@graphql-tools/utils'; import { createGraphQLThriftClient } from './client.js'; export function getThriftExecutor(subgraph) { const schemaDefDirectives = getDirectiveExtensions(subgraph); const transportDirectives = schemaDefDirectives?.transport; if (!transportDirectives?.length) throw new Error('No @transport directive found on schema definition'); const graphqlAnnotations = transportDirectives[0]; const client = createGraphQLThriftClient(graphqlAnnotations); let headers; if (typeof graphqlAnnotations.headers === 'string') { headers = JSON.parse(graphqlAnnotations.headers); } if (Array.isArray(graphqlAnnotations.headers)) { headers = Object.fromEntries(graphqlAnnotations.headers); } const headersFactory = getInterpolatedHeadersFactory(headers); const rootTypeMap = getRootTypeMap(subgraph); const fieldTypeMapDirectivesByField = new Map(); return async function thriftExecutor(executionRequest) { const operationsAndFragments = getOperationsAndFragments(executionRequest.document); const operationName = executionRequest.operationName || Object.keys(operationsAndFragments.operations)[0]; const operationAst = operationsAndFragments.operations[operationName]; const rootType = rootTypeMap.get(operationAst.operation); if (!rootType) { throw new Error(`No root type found for operation type ${operationAst.operation}`); } const rootFieldMap = rootType.getFields(); const rootFieldsWithArgs = getRootFieldsWithArgs(subgraph, executionRequest); const requestPromises = []; const root = {}; const errors = []; for (const [fieldName, args] of rootFieldsWithArgs) { if (fieldName === '__typename') { root[fieldName] = rootType.name; continue; } const field = rootFieldMap[fieldName]; if (!field) { throw new Error(`No root field found for field ${fieldName}`); } let fieldTypeMapDirectives = fieldTypeMapDirectivesByField.get(fieldName); if (fieldTypeMapDirectives == null) { fieldTypeMapDirectives = getDirectiveExtensions(field)?.fieldTypeMap || []; fieldTypeMapDirectivesByField.set(fieldName, fieldTypeMapDirectives); } fieldTypeMapDirectives?.forEach(fieldTypeMapDirective => { requestPromises.push(client .doRequest(fieldName, args, fieldTypeMapDirective?.fieldTypeMap, { headers: headersFactory({ root, args, context: executionRequest.context, env: globalThis.process?.env, }), }) .then(result => { root[fieldName] = result; }) .catch(err => { errors.push(err); })); }); } await Promise.all(requestPromises); const projectedData = projectResultBySelectionSet({ result: root, selectionSet: operationAst.selectionSet, fragments: operationsAndFragments.fragments, }); return { data: projectedData, errors: errors.length ? errors : undefined, }; }; }