cypher-query-builder
cypher-query-builder copied to clipboard
An flexible and intuitive query builder for Neo4j and Cypher.
`Set` section in Builder page was accessible on 29th but today it is not visible
This was a tricky one. I'm not sure if it's intended usage, but we've taken advantage of a neat little quirk, using the keys of where clause objects to do...
Please write me some example how to use the count or collect aggregations with the cypher query builder? In the query language they are available but I can't find here....
Add PathNamePattern class and corresponding pathName() function to allow constructing patterns with named paths, like "MATCH p=(n)-[]-()". (This was previously in PR #163 which I closed because our master branch...
When passing a generic to query.run() it does not properly type the returned value. It's typed as a Dictionary[], but when I try to access one of its elements it's...
I introduced a returnObject-Method to allow the following statement: `RETURN { foo: bar }` and an optional generic G which represents the graphmodel of the cypher (the nodes and relations...
Hi there, we're testing out the library against a causal cluster with multiple database support. We didn't find a proper way ( let me know if we just missed something...
Hi, I recently found myself needing to add custom parameters manually to a query for some advanced use cases. I did not find any way of doing it. This PR...
Is it possible to assign a query to a variable ? For instance MATCH p=(n:Node)-[r:REL]->(x:Node) RETURN p I would like to be able to assign to and access 'p' in...