apoc.map.removeKey
Function
apoc.map.removeKey(map Map<String, Any>, key String, config Map<String, Any>)
- removes the given 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?