jmespath / jmespath/jmespath.py
Wildcard issue
Open
question
- Dominant language
- Python
- Stars
- 2.4k
- Forks
- 212
- PR merge metrics
- No merged PRs in 30d
Description
>>> jmespath.search("a.*.c", { "a" : { "b" : { "c" : { "d" : "AAAA" } } } } )
[{'d': 'AAAA'}]
>>> jmespath.search("a.*.c.d", { "a" : { "b" : { "c" : { "d" : "AAAA" } } } } )
>>>
"a.*.c" works but "a.*.c.d" does not work. It should work like "a.b.c.d" -> "AAAA" back.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.