Dot notation with wildcard after recursive descent on null value array

Setup

Selector: $..*

[
    40,
    null,
    42
]

Results

Consensus

[
  40,
  42,
  null
]

Other responses

C (json-glib)

[]

Clojure (json-path) ¹

[
  40,
  42
]

Elixir (ExJsonPath)

Not supported

syntax error before: '*'

Kotlin (com.nfeld.jsonpathkt) ¹

[
  40,
  42
]

Perl (JSON-Path)

[]

Python (jsonpath-ng)

[]

Python (jsonpath-rw)

[]

Raku (JSON-Path)

[]

Ruby (jsonpath)

[
  40,
  42,
  [
    40,
    null,
    42
  ],
  null
]

Rust (jsonpath)

Not supported

parsing error

Scala (jsonpath)

[
  40,
  42,
  [
    40,
    null,
    42
  ],
  null
]

dotNET (Json.NET)

[
  40,
  42,
  [
    40,
    null,
    42
  ],
  null
]

JSON (Path_Reference_Implementation)

Not supported

 --> 1:3
  |
1 | $..*
  |   ^---
  |
  = expected childName

Errors

Golang (github.com-oliveagle-jsonpath) ¹

expression don't support in filter

Footnotes