John

Results 119 comments of John

I imagine a hypothetical `Attribute` type would be exclusive to maps? It certainly looks like an improvement. Alternative, a better solution might be simply returning maps as formatted json, and...

I realize that I could also accomplish this goal by creating a custom mutation with an associated cypher directive. Something like ``` type Mutation { createPersonWithEmailAddress(personId: ID!, emailAddressId: ID!, emailAddress:...

Hmmm. So the current code doesn't execute mutations in the order they are provided? In this case, merge would be fine because the node id's are unique. If they weren't...

> can you try again in the latest version? @jexp I ended up transitioning my project away from neo4j-graphql

Oh boy. So it looks like you've (wisely) already decided not to make `@angular/material` a peer dependency, but just to pile on: I use Angular's Material library extensively (and rather...

I believe the bolt adapter is defined here, if you're interested in figuring out what's going wrong: https://github.com/neo4jrb/neo4j-core/blob/master/lib/neo4j/core/cypher_session/adaptors/bolt.rb I don't believe anyone, in particular, has claimed "responsibility" for maintaining the...

> what about the idea of union_cypher taking multiple Query arguments (perhaps via a def union_cypher(*others, options = {}) definition)? I like that 👍 . Regarding a `union` query method,...

I see what you mean about the logic being confusing. I've got an implementation of `.union` and `.union_all()` query clause methods working in #309. Tests still need to be written...

PS: I've seen you mention a few times how you have mixed feelings about `neo4j-core`'s automatic query clause ordering (occasionally necessitating the use of`.break`). I'll admit, upon first usage I...