cypher-query-builder
cypher-query-builder copied to clipboard
Support of aggregation functions
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. https://neo4j.com/docs/cypher-manual/current/functions/aggregating/ Thank you
You need to use .raw
for now:
qb.raw("RETURN collect(something)");