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