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
expression don't support in filter
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.