JSONPath icon indicating copy to clipboard operation
JSONPath copied to clipboard

Filter expression with equals with path and path

Open SoftCreatR opened this issue 4 years ago • 0 comments

Test Data:

{
   "items":[
      {
         "key1":10,
         "key2":10
      },
      {
         "key1":42,
         "key2":50
      }
   ]
}

Selector:

$.items[?(@[email protected])]

Result:

--- Expected
+++ Actual
@@ @@
- [{"key1":10,"key2":10}]
+ []

More information: https://cburgmer.github.io/json-path-comparison/results/filter_expression_with_equals_with_path_and_path

SoftCreatR avatar Jun 02 '21 06:06 SoftCreatR