@omnigraph/neo4j
Version:
17 lines (16 loc) • 547 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadNeo4JSubgraph = loadNeo4JSubgraph;
const tslib_1 = require("tslib");
const schema_js_1 = require("./schema.js");
function loadNeo4JSubgraph(name, opts) {
return ({ logger }) => ({
name,
schema$: (0, schema_js_1.loadGraphQLSchemaFromNeo4J)(name, {
...opts,
logger,
}),
});
}
tslib_1.__exportStar(require("./schema.js"), exports);
tslib_1.__exportStar(require("@graphql-mesh/transport-neo4j"), exports);
;