-
-
Notifications
You must be signed in to change notification settings - Fork 198
Closed
Labels
Description
The following queries provide results that do not match those of other implementations of JSONPath
(compare https://github.com/cburgmer/json-path-comparison/tree/master/comparison):
-
$[-1:]
Input:["first", "second", "third"]Expected output:
["third"]Actual output:
"third" -
$[0:1]
Input:["first", "second"]Expected output:
["first"]Actual output:
"first" -
$.key
Input:{"key": ["first", "second"]}Expected output:
["first", "second"]Actual output:
[["first", "second"]]
For reference, the output was generated by the program in https://github.com/cburgmer/json-path-comparison/tree/master/implementations/JavaScript_jsonpath-plus.