apoc.map.removeKey
Function APOC Core
apoc.map.removeKey(map,key,{recursive:true/false}) - remove the key from the map (recursively if recursive is true)
Usage Examples
The following removes a key from a map:
RETURN apoc.map.removeKey(
{name:"Cristiano Ronaldo",country:"Portugal",dob:date("1985-02-05")},
"dob"
) AS output;
Output |
---|
|
Was this page helpful?