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)
[]
[
"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: '''")
Python (python-jsonpath)
[
"cc1",
"cc2",
"dd1",
"dd2"
]
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.
strconv.Atoi: parsing "'c'": invalid syntax
Footnotes
- ¹ This implementation returns a single value where only one match is possible (instead of an array of a single value).
- ² This implementation returns a specific not found value if no match exists.
- ³ This implementation returns a specific not found value if a query that would regularly return a single match results in no match.