-
Notifications
You must be signed in to change notification settings - Fork 212
Open
Description
Is there a way to filter data inside nested data structures like this JSON example:
{
"100000000": [
{
"created_at": 1231232,
"d": 123
},
{
"created_at": 123124,
"d": 123
}
],
"120000000": [
{
"created_at": 1231232,
"d": 123
},
{
"created_at": 123124,
"d": 123
}
],
"130000000": [
{
"created_at": 1231232,
"d": 123
}
]
}Tell me, is it possible to search through all elements of the array, and within each key in the array of objects, select only those data whose created_at is between 100 and 1000, for example?
If possible, please tell me. How much does this impact performance?
Metadata
Metadata
Assignees
Labels
No labels