We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following issue #420, add support for filter with nested in jsonpath expression.
for example
{ "fruit": [ { "name": "apple", "price": { "US": 100, "UN": 110 } }, { "name": "grape", "price": { "US": 200, "UN": 150 } } ] }
The jsonpath expression $.fruit[?(@.price.US==200)].name should return grape.
$.fruit[?(@.price.US==200)].name
grape
Note that this is implemented in jsonpath.com but not described in the https://goessner.net/articles/JsonPath .
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Following issue #420, add support for filter with nested in jsonpath expression.
for example
The jsonpath expression
$.fruit[?(@.price.US==200)].name
should returngrape
.Note that this is implemented in jsonpath.com
but not described in the https://goessner.net/articles/JsonPath .
The text was updated successfully, but these errors were encountered: