@omnigraph/neo4j
Version:
128 lines (127 loc) • 4.85 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadGraphQLSchemaFromNeo4J = loadGraphQLSchemaFromNeo4J;
const tslib_1 = require("tslib");
const graphql_1 = require("graphql");
const neo4j_driver_1 = tslib_1.__importDefault(require("neo4j-driver"));
const transport_neo4j_1 = require("@graphql-mesh/transport-neo4j");
const schema_1 = require("@graphql-tools/schema");
const introspector_1 = require("@neo4j/introspector");
const strReplaceAllPolyfill_js_1 = require("./strReplaceAllPolyfill.js");
function createAddIntrospectionDirective(subgraph) {
return function addIntrospectionDirective(node) {
if (!node.directives?.some(directive => directive.name.value === 'introspection')) {
return {
...node,
directives: [
...(node.directives || []),
{
kind: 'Directive',
name: {
kind: 'Name',
value: 'introspection',
arguments: [
{
kind: 'Argument',
name: {
kind: 'Name',
value: 'subgraph',
},
value: {
kind: 'StringValue',
value: subgraph,
},
},
],
},
},
],
};
}
};
}
async function loadGraphQLSchemaFromNeo4J(subgraphName, { endpoint, auth, logger, pubsub, database = 'neo4j', driver }) {
logger?.info('Inferring the schema from the database: ', `"${database}"`);
let closeDriverAfter = false;
if (!driver) {
closeDriverAfter = !pubsub;
driver = (0, transport_neo4j_1.getDriverFromOpts)({
endpoint,
auth,
logger,
});
}
(0, strReplaceAllPolyfill_js_1.polyfillStrReplaceAll)();
const typeDefsStr = await (0, introspector_1.toGraphQLTypeDefs)(() => driver.session({
database,
defaultAccessMode: neo4j_driver_1.default.session.READ,
}));
let typeDefs = (0, graphql_1.parse)(typeDefsStr, { noLocation: true });
const addIntrospectionDirective = createAddIntrospectionDirective(subgraphName);
typeDefs = (0, graphql_1.visit)(typeDefs, {
EnumTypeDefinition: addIntrospectionDirective,
ObjectTypeDefinition: addIntrospectionDirective,
InterfaceTypeDefinition: addIntrospectionDirective,
UnionTypeDefinition: addIntrospectionDirective,
InputObjectTypeDefinition: addIntrospectionDirective,
FieldDefinition: addIntrospectionDirective,
// DirectiveDefinition: addIntrospectionDirective,
ScalarTypeDefinition: addIntrospectionDirective,
EnumValueDefinition: addIntrospectionDirective,
InputValueDefinition: addIntrospectionDirective,
});
typeDefs.definitions.push(...(0, graphql_1.parse)(
/* GraphQL */ `
directive @relationshipProperties on OBJECT
directive @relationship(
type: String
direction: _RelationDirections
properties: String
) on FIELD_DEFINITION
enum _RelationDirections {
IN
OUT
}
directive @introspection(
subgraph: String
) on ENUM | OBJECT | INTERFACE | UNION | INPUT_OBJECT | FIELD_DEFINITION | SCALAR | ENUM_VALUE | INPUT_FIELD_DEFINITION
directive @transport(
kind: String
subgraph: String
location: String
options: TransportOptions
) on SCHEMA
scalar TransportOptions
directive @node on OBJECT
`, {
noLocation: true,
}).definitions);
(0, strReplaceAllPolyfill_js_1.revertStrReplaceAllPolyfill)();
const schema = await (0, transport_neo4j_1.getExecutableSchemaFromTypeDefsAndDriver)({
driver,
pubsub,
typeDefs,
});
if (closeDriverAfter) {
await driver.close();
}
const schemaExtensions = (schema.extensions ||= {});
schemaExtensions.directives = schemaExtensions.directives || {};
schemaExtensions.directives.transport = [
{
kind: 'neo4j',
subgraph: subgraphName,
location: endpoint,
options: {
database,
auth,
},
},
];
return (0, schema_1.mergeSchemas)({
schemas: [schema],
typeDefs,
assumeValid: true,
assumeValidSDL: true,
});
}
;