Dot notation with wildcard after dot notation with wildcard on nested arrays

Setup

Selector: $.*.*

[[1, 2, 3], [4, 5, 6]]

Results

Consensus

[
  1,
  2,
  3,
  4,
  5,
  6
]

Other responses

C (json-glib)

[
  [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ]
  ]
]

Python (jsonpath-ng)

[]

Python (jsonpath-rw)

[]

Ruby (jsonpath)

[
  [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ]
  ],
  [
    1,
    2,
    3
  ],
  1,
  2,
  3,
  [
    4,
    5,
    6
  ],
  4,
  5,
  6
]

Scala (jsonpath)

[]

dotNET (Json.NET)

[]

Errors

Golang (github.com-oliveagle-jsonpath) ¹

expression don't support in filter

Footnotes