A dune-rescue cache must return every kit whose status is open within one depot partition. The API does not know each kit’s item id in advance. Which Cosmos SDK approach is appropriate?
Select an answer to reveal the explanation.
Short Explanation
When you know the filter but not every id, you query—parameterized, through the iterator. Point reads are for “I already know this exact kit,” not “show me all open ones.”
Full Explanation
Point reads require id and partition key. Filtering many items by property values requires a query executed via the SDK iterator, ideally parameterized and scoped with the partition key when available. Upsert and account metadata APIs do not return filtered item sets for this read scenario.