apoc.map.merge
Function
apoc.map.merge(map1 Map<String, Any>, map2 Map<String, Any>)
- merges the two given maps into one map.
Usage Examples
The following merges two maps:
RETURN apoc.map.merge(
{name: "Cristiano Ronaldo", dob: date("1985-02-05")},
{country: "Portugal"}
) AS output;
Output |
---|
|
Was this page helpful?