Represents a List
Cypher Documentation
new Cypher.List([new Cypher.Literal("1"), new Cypher.Literal("2"), new Cypher.Literal("3")]) Copy
new Cypher.List([new Cypher.Literal("1"), new Cypher.Literal("2"), new Cypher.Literal("3")])
Translates to
[ "1", "2", "3" ] Copy
[ "1", "2", "3" ]
Access individual elements in the list
Represents a List
See
Cypher Documentation
Example
Translates to