jmespath / jmespath/jmespath.js
How to search in this case
Open
- Dominant language
- JavaScript
- Stars
- 847
- Forks
- 101
- PR merge metrics
- No merged PRs in 30d
Description
json
```
{
1: [
01: {
content: "this one"
},
02: {
content: "this two"
}
],
2: [
01: {
content: "this three"
},
02: {
content: "this four"
}
]
}
```
I want to filter contains "two" keyword and want to return this type of result
```
{
1: [
02: {
content: "this two"
}
]
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.