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).
This code references `field` which is not defined in the scope: https://github.com/neo4j-graphql/neo4j-graphql-js/blob/d4d2e2f8c47dcda2d0fe6d65dcb158f3a4aec686/src/augment.js#L443
When querying a nested object that's refined in a `WITH` clause the error is generated with a stack trace like: ``` TypeError: Cannot read property '0' of undefined buildCypherSelection ......
Hello I actually wanted to make a createdAt filed for my mutation and i cannot do it for now. I could be really nice to do it this way: ```graphql...
I have a query defined as ``` byParent(id: Int): [movie] @cypher( statement: "MATCH (movie:movie)-->(c:movie) WHERE ID(movie)=$id RETURN c" ) ``` and a graphql query of ``` query { byParent(id: 108)...
The autogenerated queries are currently returning nullable lists of nullable types. For example, if I've defined the following type: ``` type Song { id: ID! name: String! artists: [Artist!]! @relation(name:...
This is more of a general question, maybe a feature request. Looking at https://github.com/neo4j-graphql/neo4j-graphql-js/issues/153, it seems the library is compatible with subscriptions. @johnymontana is the neo4jgraphql function supposed to be...
@johnymontana Will, You mentioned in your legendary article [here](https://blog.grandstack.io/authorization-in-graphql-using-custom-schema-directives-eafa6f5b4658) that you guys are working on Authorization Schema Directives so context of JWT token details can be used for 1) role-based-access-control...
One powerful feature of neo4j is the ability to use [path patterns in WHERE clauses](https://neo4j.com/docs/cypher-manual/current/clauses/where/#query-where-patterns). I think implementing a custom @where directive that allows for the inclusion of such statements...
I'm having trouble using fragments on both fields and subfields in the same query. For example, when I make this query... ``` fragment ArtistFragment on Artist { albums { name...
This question might be really dumb, I'm not the best at neither GraphQL nor Neo4j. I have a schema created with `makeAugmentedSchema`, where there's a user that has an address...