@graphql-mesh/transport-neo4j
Version:
13 lines (12 loc) • 381 B
JavaScript
import { getNeo4JExecutor } from './executor.js';
export * from './auth.js';
export * from './driver.js';
export * from './eventEmitterForPubSub.js';
export * from './executor.js';
export const getSubgraphExecutor = function getNeo4JSubgraphExecutor({ subgraph, pubsub, logger }) {
return getNeo4JExecutor({
schema: subgraph,
pubsub,
logger,
});
};