jmespath / jmespath/jmespath.site
How to find all by key?
- Dominant language
- Makefile
- Stars
- 61
- Forks
- 61
- PR merge metrics
- No merged PRs in 30d
Description
Could you please help me how to **find all** `condition` nodes recursively?

JSON example:
```json
{
"WHERE": {
"AND": [
{
"condition": {
"AND": [
{
"condition": {
"name": "cond1"
}
},
{
"condition": {
"name": "cond2"
}
}
],
"name": "cond-group"
}
},
{
"condition": {
"name": "cond3"
}
},
{
"condition": {
"name": "cond4"
}
}
]
}
}
```
I would like to find all `conditions` no matter where it is. Probably it should looks like `*[?condition]` or `values(*)[?condition]`(non-rooted expressions).
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.