apoc.coll.zip
Function APOC Core
apoc.coll.zip([list1],[list2])
Usage Examples
The following combines two lists, element for element, into a stream of lists:
RETURN apoc.coll.zip([1,2,3], ["a", "b", "c"]) as output;
Output |
---|
[[1, "a"], [2, "b"], [3, "c"]] |
Was this page helpful?