John

Results 37 issues of John

Just putting this up to track the fact that cypher has deprecated the `CREATE UNIQUE` clause in favor of accomplishing the same thing using `MERGE` (see: http://neo4j.com/docs/developer-manual/current/cypher/clauses/create-unique/). I imagine this...

This PR adds bang setters for simple (non-ActiveRel) associations which raise an error if the association fails to persist (without an extra DB call). In my testing, creating an association...

Obviously this package is a WIP, but as an eventual documentation (or maybe feature) request: Having some guidance on how to load different code on the server vs on the...

documentation

I'm not sure if this is a bug or a feature request, but I'm guessing it's a feature request. I have a schema: ``` type EmailAddress { id: ID! emailAddress:...

[The GraphQL spec](http://facebook.github.io/graphql/June2018/#BlockStringCharacter) defines a block string syntax `"""`. This is most useful in relation to neo4j-graphql when defining a long `@cypher` directive. Example: ``` type Person { primaryEmailAddress(ownerId: ID!):...

Currently, the plugin auto generates queries with UpperCamelCase field names. i.e. ``` type Query { Person(id: ID, ...): Person } ``` The graphql convention is for field names to be...

At the moment, neo4j-graphql appears to place auto-generated root fields in a special `QueryType` type. It's unclear if this is a bug or intentional. As [shown in the spec](http://facebook.github.io/graphql/June2018/#sec-Root-Operation-Types), the...

When I ran into bug #138, it caused me to notice that the auto-generated mutations (which are SUPER SUPER COOL btw) are automatically adding a label for each interface a...

Fixes #308 Currently, both `.union()` and `.union_all()` are working for my (limited) testing. I wanted to run my implementation by you before writing any tests / docs. You were correct,...

While attempting to create a query involving the union of three sub-queries, I discovered that `union_cypher` expects a query object but returns a string rather than another query object. This...