Querying Multiple Documents by IDs in Convex
1. Is there a way to use the filter method to directly query for a set of IDs in one go, something akin to an IN clause in SQL? For example, can I pass an array of IDs to filter or use a combination of filter and or to achieve this? Or maybe with some other method?
2. If such an array-based filtering is not supported, would it be more efficient to:
(a)Retrieve all documents and filter them on the client-side using JavaScript? ()
(b)Make separate queries for each ID?
(c) Some other pattern
