cypher-query-builder icon indicating copy to clipboard operation
cypher-query-builder copied to clipboard

An flexible and intuitive query builder for Neo4j and Cypher.

Results 26 cypher-query-builder issues
Sort by recently updated
recently updated
newest added

Sometimes it's handy to be able insert literal sections of a query into other clauses. Currently it's not possible to do this meaning if there is no clause function that...

When using MATCH, the path pattern can be stored in a variable for use in FOREACH clauses or other functions. Possible implementation could be: ``` query.match('path', [ node('person'), relation('out', [...

Hi @jamesfer , Thanks for all your work on this! Do you plan to implement FOREACH clause?

Arrays of values inside conditions as a shorthand for the `OR` operator should also accept comparators as their members. query.where({ age: [ lessThan(18), greater than(65) ]} // WHERE age <...

Considering this package is no longer being maintained, and it is lacking some Cypher features I use quite a bit (for example, subqueries and case statements), I was looking for...

Replaced **.ret** with **.return** in Cypher query examples for consistency and correctness.