Hey everyone. I am trying to do a stats count by items{}.description, items{}.price but I'd like to filter out some of the items. In this example, I'd like to include "description one" and "description two", but not "description three". In the real situation there is many more that I'd like to include and to exclude. Is this possible?
"time": "01:01:01",
"items": [
{
"description": "description one",
"price": "$220"
},
{
"description": "description two",
"price": "$10"
},
{
"description": "description three",
"price": "$50"
}
]
... View more