Looking to drop a field from an array of objects in synapse data flows.
Example data:
"Animals":[{"name":"tiger","colour":"white","location":"zoo"},{"name":"eagle","colour":"brown","location":"wild"}]
Expected Output:
"Animals":[{"name":"tiger","location":"zoo"},{"name":"eagle","location":"wild"}]
Looking for a way to drop the field. Thanks very much!
{"Animals":@{activity('Data flow1').output.runStatus.output.sink1.Value}}