apoc.map.mergeList
Function
apoc.map.mergeList(maps [Map<String, Value>])
- merges all maps in the given list into one map.
Usage Examples
The following merges multiple maps:
RETURN apoc.map.mergeList([
{name: "Cristiano Ronaldo"},
{dob: date("1985-02-05")},
{country: "Portugal"}
]) AS output;
Output |
---|
|
Was this page helpful?