JsonPath AND Operator on Array
I have an array in JSON and I would like to apply two filters to it like so:
$._embedded.values[0]._embedded.data[?(@.var1='value1' && @.var2='value2')]
I need to select only those elements from the array that satisfies the AND operation. However, in practice this doesn't appear to work.
Is it possible to do this or must I perform a two step action to extract one set then filter again to get my final results?