Dot notation after array slice

Setup

Selector: $[0:2].key

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

Results

Consensus

[
  "ey",
  "bee"
]

Other responses

Clojure (json-path) ¹

"ey"

Elixir (jaxon)

[]

Golang (github.com-oliveagle-jsonpath) ¹

[
  "ey",
  "bee",
  "see"
]

Raku (JSON-Path)

[
  "ey",
  "bee",
  "see"
]

Rust (jsonpath)

[
  "ey",
  "bee",
  "see"
]

Footnotes