cypher-builder
cypher-builder copied to clipboard
Support for index operator on list expressions
There is no way of generating the following Cypher code with the CypherBuilder, as the index operator is only available on variables
Cypher.collect(var)[0]
There are 2 approaches to this:
- Make
Expra class with anindexmethod (this is probably breaking) - Add an
indexfunction that accepts anExprand index number