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
Given the following input:
plugins: - config: do: rae foo: bar id: 1 name: abc - config: do: so foo: bar id: 2 name: xyz services: - name: my-service plugins: - config: do: rae foo: special id: 3 name: abc - name: my-service plugins: - config: do: false foo: bar id: 4 name: rst
This selector:
$.plugins[?(@.id<2)]
returns the expected
name: abc id: 1 config: foo: bar do: rae
When introducing recursive descent, no results are returned
$..plugins[?(@.id<2)]
Filters should work with recursive descent according to https://goessner.net/articles/JsonPath/
Thank you for this library, any advice on using this library with these features appreciated.
The text was updated successfully, but these errors were encountered:
I am in the progress of hunting this down this bug to squash it. It is an obstacle to a project I'm currently working on related to my OpenAPI work.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Given the following input:
This selector:
returns the expected
When introducing recursive descent, no results are returned
Reproduction steps
Expected behavior
Filters should work with recursive descent according to https://goessner.net/articles/JsonPath/
Additional context
Thank you for this library, any advice on using this library with these features appreciated.
The text was updated successfully, but these errors were encountered: