Does Celigo support JSONPath filtering in Mapper/Transformation 2.0? For the below data array I would like to get only the quantity of hats, using jsonpath filtering this would be
$.items[?(@.type=='Hat')].qty
This works on JSONPath.com, but in Celigo I get the error ' Eval [?(expr)] prevented in JSONPath expression.', which leads me to believe this is being blocked.
{
"items": [{
"type": "Hat",
"qty": 3
}, {
"type": "Shoes",
"qty": 1
}
]
}