Hi
I have a Zap that produces output that looks like:
{
"id":123,
"name":"Joe",
"items":
{
"id":"ABC",
"type":"type1"
},
{
"id":"XYZ",
"type":"type2"
},
{
"id":"BEY",
"type":"type1"
}
]
}
I want to specifically filter the items array to only include items of a specific type. I want the output to include all other fields, in this case the output for filtering on `type1` should be:
{
"id":123,
"name":"Joe",
"items": "
{
"id":"ABC",
"type":"type1"
},
{
"id":"BEY",
"type":"type1"
}
]
}
Is there an easy way to accomplish this?