diff --git a/README.md b/README.md index 48c944d1..a76a8c90 100644 --- a/README.md +++ b/README.md @@ -215,8 +215,8 @@ Inline predicates are the ones defined in the path. List> books = JsonPath.parse(json).read("$.store.book[?(@.price < 10)]"); ``` -In the current implementation you can use `&&` to combine multiple predicates `[?(@.price < 10 && @.category == 'fiction')]`. -OR operations are not supported in inline predicates yet. +You can use `&&` and `||` to combine multiple predicates `[?(@.price < 10 && @.category == 'fiction')]` , +`[?(@.category == 'reference' || @.price > 10)]`. ###Filter Predicates