JSONPath
JSONPath copied to clipboard
Union With Repeated Matches After Dot Notation With Wildcard
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