The JsonPath processor uses an older version of the Java library. I think it's v2.0. Have you tried that against the latest version of the Java lib? I know there's at least one JsonPath feature the version we use doesn't support.
On Fri, Apr 27, 2018 at 3:14 PM Anil Rai <[email protected]> wrote: > Experts, > > Input JSON > ------- > { "fields":[ > { > "maskType": "a", > "name": "Id" > }, > { > "maskType": "b", > "name": "Type" > } > ] > } > ----------- > > JsonPath : $.fields[?(@.name=="Type")].maskType > > -------------- > > Expected Output > ------- > [ > "b" > ] > -------- > > But EvaluateJsonPath processor is giving me [] > > Any idea? > > Thanks > Anil >
