@graphql-mesh/apollo-link
Version:
42 lines (41 loc) • 1.67 kB
JavaScript
import { getOperationAST } from 'graphql';
import * as apolloClient from '@apollo/client';
import { isAsyncIterable, mapMaybePromise } from '@graphql-tools/utils';
const ROOT_VALUE = {};
function createMeshApolloRequestHandler(options) {
return function meshApolloRequestHandler(operation) {
const operationAst = getOperationAST(operation.query, operation.operationName);
if (!operationAst) {
throw new Error('GraphQL operation not found');
}
const operationFn = operationAst.operation === 'subscription' ? options.subscribe : options.execute;
return new apolloClient.Observable(observer => {
mapMaybePromise(operationFn(operation.query, operation.variables, operation.getContext(), ROOT_VALUE, operation.operationName), async (results) => {
if (isAsyncIterable(results)) {
for await (const result of results) {
if (observer.closed) {
return;
}
observer.next(result);
}
observer.complete();
}
else {
if (!observer.closed) {
observer.next(results);
observer.complete();
}
}
}, error => {
if (!observer.closed) {
observer.error(error);
}
});
});
};
}
export class MeshApolloLink extends apolloClient.ApolloLink {
constructor(options) {
super(createMeshApolloRequestHandler(options));
}
}