Skip to content
New issue

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

Support filter with nested object in jsonpath expression #423

Closed
fabricereix opened this issue Dec 19, 2021 · 0 comments · Fixed by #427
Closed

Support filter with nested object in jsonpath expression #423

fabricereix opened this issue Dec 19, 2021 · 0 comments · Fixed by #427
Labels
enhancement New feature or request
Milestone

Comments

@fabricereix
Copy link
Collaborator

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.

Note that this is implemented in jsonpath.com
but not described in the https://goessner.net/articles/JsonPath .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants