Forum Discussion
The thing to delete in the Mapper is interpreted as a JSON-Path. In Robin’s example, it’s just a top-level property in the document. But, you should be able to use a path like the following to walk an array and delete the property in all the objects in the array:
$group[*].OwnerEmail
So, this path will walk through all the elements in the ‘group’ array (the $group[*]
part) and delete the ‘OwnerEmail’ properties.
matt_bostrom
8 years agoNew Contributor II
Got it. That worked for me! Thank you both for the help.