JSONPath filtering in Transformation 2.0

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
}
]
}

4 posts were merged into an existing topic: JSONPath Filtering in Mapper 2.0 & Transformation 2.0

A post was split to a new topic: JSONPath Filtering in Mapper 2.0 & Transformation 2.0