apoc.map.merge
Function APOC Core
apoc.map.merge(first,second) - merges two maps
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?