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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
"store": { "book": [ { "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95 }, { "category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99 }, { "category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99 }, { "category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99 } ], "bicycle": { "color": "red", "price": 19.95 } }, "expensive": 10 }
Query $..book[?(@.price > $.expensive)] fails to return the data on the above data. This query is fine as we can see here.
$..book[?(@.price > $.expensive)]
http://jsonpath.herokuapp.com/ paste the query and click go, it filters the data as expected.
http://jsonpath.herokuapp.com/
go
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Query
$..book[?(@.price > $.expensive)]
fails to return the data on the above data. This query is fine as we can see here.http://jsonpath.herokuapp.com/
paste the query and clickgo
, it filters the data as expected.The text was updated successfully, but these errors were encountered: