Dot notation after union

Setup

Selector: $[0,2].key

[{"key": "ey"}, {"key": "bee"}, {"key": "see"}]

Results

Consensus

[
  "ey",
  "see"
]

Other responses

Clojure (json-path) ¹

"ey"

Elixir (jaxon)

[]

Python (jsonpath-ng)

Not supported

JsonPathParserError('Parse error at 1:3 near token , (,)')

Python (jsonpath-rw)

Not supported

Exception('Parse error at 1:3 near token , (,)')

Rust (jsonpath)

Not supported

parsing error

Footnotes