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
See http://goessner.net/articles/JsonPath/
An example object and expression filters out any book that has a price greater
than 10:
$.store.book[?(@.price < 10)].title
This expression returns 4 titles, when it should return only 2 titles.
The correct expression is:
$.store.book[?(@['price'] < 10)].title
...Running against jsonpath for PHP.
Original issue reported on code.google.com by [email protected] on 13 Dec 2011 at 9:48
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 13 Dec 2011 at 9:48The text was updated successfully, but these errors were encountered: