Skip to content

shaweiguo/neo4j-graphql-binding

 
 

Repository files navigation

Introduction

It seems that GraphQL users could benefit from using __graph databases and graph database users could benefit from using GraphQL. Thankfully, much has already been done to support this direction.

As part of the GRANDstack project, Neo4j has built a GraphQL-Endpoint extension named Neo4j-GraphQL, which provides an auto-generated API and custom database procedures for updating the schema and running operations. They have also developed the neo4j-graphql-js package, which converts GraphQL requests directly to Cypher requests and is especially useful in situations where the Neo4j-GraphQL extension is not available.

The Apollo Platform provides a variety of technologies that support working with GraphQL, including Apollo Server 2.0 and Apollo Link for composable networking.

Prisma has developed a collection of GraphQL resources. Their graphql-binding package makes it easier to use schema delegation. They have also built the Prisma API, which supports nested mutations.

Goal

The goal of this project is to use Neo4j graph databases and Apollo server and networking resources to support progressively enhancing a GraphQL API that draws from current developments within the GraphQL community and further explores using GraphQL with graph databases. Given that Neo4j uses a property graph model, it should be interesting to develop features that take advantage of relationship properties.

Features

  • Augments your schema without needing to introspect your Neo4j-GraphQL HTTP endpoint and uses the ⚡ Bolt driver for all operations.
  • Allows using the @cypher directive from Neo4j-GraphQL for computed fields, query types and mutations.
  • Supports the same query types generated by Neo4j-GraphQL, as well as the query arguments first, offset, orderBy, and filter, similar to those found in the Prisma Query API.
  • Supports nested create and connect mutations like those in the Prisma Mutation API (update, delete, etc. in development).
  • Generates resolvers for query and mutation types with a @cypher directive, as well as all auto-generated types.
  • Supports a @unique field directive for node property constraints in Neo4j in order to make node selection more robust.
  • Adds a id: ID! @unique field (if not provided) to any type with a @model directive and uses the cuid package to generate id field values for all auto-generated creation mutations.

Resources

About

A GraphQL binding for your Neo4j GraphQL API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%