Skip to content

[CYPHER] List concatenation operator || returns only first list #3921

@ExtReMLapin

Description

@ExtReMLapin

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:

{"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.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions