Test: listConcatenationWithDoublePipe (line 185)
Cypher query to execute:
RETURN [1, 2] || [3, 4] AS result
Expected behavior:
[1, 2] || [3, 4] should return [1, 2, 3, 4]
ArcadeDB result:
Neo4j result:
The || operator for list concatenation only returns the first list instead of concatenating both lists.
Test:
listConcatenationWithDoublePipe(line 185)Cypher query to execute:
Expected behavior:
ArcadeDB result:
{"result": [1, 2]}Neo4j result:
{"result": [1, 2, 3, 4]}The
||operator for list concatenation only returns the first list instead of concatenating both lists.