JSONPath icon indicating copy to clipboard operation
JSONPath copied to clipboard

Dot Notation With Key Root Literal

Open SoftCreatR opened this issue 4 years ago • 0 comments

Test Data:

{
   "key":"value",
   "another key":{
      "complex":"string",
      "primitives":[
         0,
         1
      ]
   }
}

Selector:

$..[*]

Result:

Unable to parse token $ in expression: .$

Expected result (Proposal A):

[
  "value"
]

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

SoftCreatR avatar Nov 02 '20 20:11 SoftCreatR