neo4j-graphql-js
neo4j-graphql-js copied to clipboard
NOTE: This project is no longer actively maintained. Please consider using the official Neo4j GraphQL Library (linked in README).
The `@relation` directive is useful for taking relations in an underlying Neo4j database and encoding them in a GraphQL schema. I'd like to be able to derive the type names...
I may be missing something obvious, but I can't seem to find a way in the examples or docs to allow anonymous access to autogenerated queries or mutations. I am...
This might be two issues, but I wanted to bring them up together with a single schema as a reference point for examples. ### Minimal schema: ``` type Journal {...
I have a schema that has nodes with properties that are arrays of Strings (`[String]`). This gets parsed properly by the type generator, but the autogenerated query just expects the...
adding a entity level directive eg `@tracked` to add and correctly update a `created` and `updated` timestamp fields.
If we have an example like this: ```idl type Person { id: String, otherPropertiesEtc: String, user: User, } type User { usernameEtc: String, } ``` In this example our `User`...
Related to a discussion with Will, if I write a type like this: ``` type UPVOTE @relation(name: "UPVOTE") { from: User! to: Response! } ``` It would be nice to...
As pointed out in #239 it would be good to have some basic performance tests to track performance regressions and improvements
As far as I can tell currently, the library fails when you try to add `neo4jgraphql` as an 'entry point' anywhere except a field within the root `Query` or `Mutation`....
I am confused as to how an example such as this, found in your documentation, is compatible with `graphql-auth-directives`: ``` const server = new ApolloServer({ schema: augmentedSchema, context: ({ req...