neo4j-graphql-js icon indicating copy to clipboard operation
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).

Results 101 neo4j-graphql-js issues
Sort by recently updated
recently updated
newest added

I think I found a bug where, in the type definitions, if the first field on a type is not a scalar the auto generated mutations fail to pass validation,...

Passing an array of type definitions (instead of a single SDL string) is supported by graphql-tool's `makeExecutableSchema` and should also be supported by `makeAugmentedSchema`. For example: ``` const typeDefs =...

Hi all, I have decided to use neo4j extensively for fine-grained authorization rules. I would like to hear from you guys if this sounds correct. I have the following typeDefs:...

Expected: When trying to update from default CRUD operations only by adding id:1 without second arguments should not throw error ```graphql mutation UpdateAppType { UpdateAppType(id: 1) { id } }...

[The API reference](https://grandstack.io/docs/neo4j-graphql-js-api.html) has three ways to customize the generated resolvers: * `neo4jgraphql(object, params, context, resolveInfo, debug)` * `cypherQuery(params, context, resolveInfo)` * `cypherMutation(params, context, resolveInfo)` The first executes cypher while...

The generated Cypher queries for relationship create and delete mutations return a record with the column name being the name of the return type. `extractQueryResult` changes the first character of...

When custom Cypher is used for a field returning a relationship type, incorrect results are returned for node fields on the result. The properties on the relationship are correct, but...

Hi all, I am in a situation where anybody can `create` or `update` content but only someone with an admin role can `delete` it. And this is true for more...