Union with keys after dot notation with wildcard

Setup

Selector: $.*['c','d']

[{"c":"cc1","d":"dd1","e":"ee1"},{"c":"cc2","d":"dd2","e":"ee2"}]

Results

Consensus

[
  "cc1",
  "dd1",
  "cc2",
  "dd2"
]

Other responses

C (json-glib)

[
  [
    {
      "c": "cc1",
      "d": "dd1",
      "e": "ee1"
    },
    {
      "c": "cc2",
      "d": "dd2",
      "e": "ee2"
    }
  ]
]

Elixir (jaxon)

[]

Golang (github.com-spyzhov-ajson)

[
  "cc1",
  "cc2",
  "dd1",
  "dd2"
]

JavaScript (jsonpath-plus)

[]

Java (com.jayway.jsonpath) ¹ ³

[
  {
    "c": "cc1",
    "d": "dd1"
  },
  {
    "c": "cc2",
    "d": "dd2"
  }
]

Objective-C (SMJJSONPath) ¹ ³

[
  {
    "c": "cc1",
    "d": "dd1"
  },
  {
    "c": "cc2",
    "d": "dd2"
  }
]

Perl (JSON-Path)

[]

Python (jsonpath-ng)

[]

Python (jsonpath-rw)

[]

Python (jsonpath2)

Not supported

line 1:4 token recognition error at: '''
ValueError("line 1:4 token recognition error at: '''")

Raku (JSON-Path)

Not supported

JSON path parse error at position 3

Rust (jsonpath)

Not supported

parsing error

Rust (jsonpath_plus)

[
  "cc1",
  "cc2",
  "dd1",
  "dd2"
]

Scala (jsonpath)

[]

dotNET (Json.NET)

[]

dotNET (Manatee.Json)

Not supported

Expected close bracket. Path up to error: '$.*'

Errors

Clojure (json-path) ¹

java.lang.Exception object must be an array.

Golang (github.com-oliveagle-jsonpath) ¹

strconv.Atoi: parsing "'c'": invalid syntax

Footnotes