apoc.coll.union
Function
apoc.coll.union(list1 [Any], list2 [Any])
- returns the distinct union of the two given lists.
Usage examples
The following creates a distinct union of two lists:
RETURN apoc.coll.union([1,2,3,4,5], [3,4,5,6,7]) AS output;
Output |
---|
[1, 2, 3, 4, 5, 6, 7] |
Was this page helpful?