You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$..[?(@.isbn)]: This doesn't work but is accepted in https://jsonpath.com/. It should recursively return any object that has an isbn, not only the ones that are part of a book property.
The text was updated successfully, but these errors were encountered:
Given the example data on the documentation:
I try the following queries:
$..book[?(@.isbn)]
: This works as given in the (https://docs.rs/jsonpath-rust/latest/jsonpath_rust/)[documentation]$..[?(@.isbn)]
: This doesn't work but is accepted in https://jsonpath.com/. It should recursively return any object that has an isbn, not only the ones that are part of abook
property.The text was updated successfully, but these errors were encountered: