apoc.coll.unionAll
Function APOC Core
apoc.coll.unionAll(first, second) - creates the full union with duplicates of the two lists
Usage Examples
The following creates the full union of two lists:
RETURN apoc.coll.unionAll([1,2,3,4,5], [3,4,5,6,7]) AS output;
Output |
---|
[1, 2, 3, 4, 5, 3, 4, 5, 6, 7] |
Was this page helpful?