I have the following structure (taken from the tutorial) "results": [ { "orderlines": [ { "productId": "coffee01", "qty": 1 }, { "productId": "sugar22", "qty": 1 } ] }, { "orderlines": [ { "productId": "coffee01", "qty": 2 }, { "productId": "tea111", "qty": 1 } ] }
I want to be able to find all orderlines that have any index that is equal to tea111. Is this a way to this generally or I need to compare each index separately?