jmespath / jmespath/jmespath.test

wildcard issue

Open
#14 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
7
Forks
7
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.