Sample Code:
%dw 2.0
output application/json
---
payload filterObject ((value, key) -> (key as String != "Test"))
In the above code
1. filterObject is used to filter JSON payload.
2. key as String is used since key is not an equivalent to String.
3. != is used to select all keys and values except “Test”.
The above code removes key “Test” and it’s values from the payload.
Thanks this is really awesome
yes its greate
Its Cool