JSONPath icon indicating copy to clipboard operation
JSONPath copied to clipboard

Filter Expression With Boolean Or Operator

Open SoftCreatR opened this issue 5 years ago • 0 comments

Test Data:

[
   {
      "key":42
   },
   {
      "key":43
   },
   {
      "key":44
   }
]

Selector:

$[?(@.key>43 || @.key<43)]

Result (Proposal A):

--- Expected
+++ Actual
@@ @@
-'[{"key":42},{"key":44}]'
+'[{"key":44}]'

https://cburgmer.github.io/json-path-comparison/results/filter_expression_with_boolean_or_operator.html

SoftCreatR avatar Nov 03 '20 13:11 SoftCreatR