JSONPath icon indicating copy to clipboard operation
JSONPath copied to clipboard

Union With Repeated Matches After Dot Notation With Wildcard

Open SoftCreatR opened this issue 5 years ago • 0 comments

Test Data:

{
   "a":[
      "string",
      null,
      true
   ],
   "b":[
      false,
      "string",
      5.4
   ]
}

Selector:

$.*[0,:5]

Result (Proposal A):

--- Expected
+++ Actual
@@ @@
-'["string","string",null,true,false,false,"string",5.4]'
+'["string",null,true,false,"string",5.4]'

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

SoftCreatR avatar Nov 03 '20 14:11 SoftCreatR