neo4jGraphQLBinding
Creates a GraphQL Binding for a Neo4j instance that uses the Neo4j-GraphQL extension.
Strategy
API Reference
Example
import { neo4jGraphQLBinding } from 'neo4j-graphql-binding';
const binding = neo4jGraphQLBinding({
typeDefs: typeDefs,
driver: driver,
log: true
});
const context = {
neo4j: binding
...
};Last updated