Bracket notation with wildcard on null value array

Setup

Selector: $[*]

[
    40,
    null,
    42
]

Results

Consensus

[
  40,
  null,
  42
]

Other responses

Elixir (ExJsonPath)

Not supported

syntax error before: '*'

Rust (jsonpath)

Not supported

parsing error

JSON (Path_Reference_Implementation)

Not supported

 --> 1:3
  |
1 | $[*]
  |   ^---
  |
  = expected unionChild, unionArrayIndex, or sliceStart

Footnotes