apoc.map.removeKeys
Function
apoc.map.removeKeys(map Map<String, Any>, keys [String], config Map<String, Any>)
- removes the given 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?