MitchDale When using the Retrieve Values from JSON Wrk Action, are OR operators supported? E.g. something like: $.objects[?some_field == 'foo' OR some_field == 'bar']
DylanPammett Hey @MitchDale , you should be able to do OR statements on fields by using the regex options something like this should work $.objects[?(@.some_field =~ '(^foo$)|(^bar$)')]