oldbirdOriginal post
Rank 1: Thread
How to call the interface once to query Documents through Document ids?
Summary
The user is asking how to query documents using document IDs. They suggest saving everything in the same document but note that it can degrade performance. They also propose having a separate collection for followers with attributes for User ID and Article ID. They want to know how to call the interface once to query documents using Document IDs.
Solution: One option is to use the `listDocuments` method with a query that includes `Query.equal("$id", ["[DOCUMENT_ID_1]", "[DOCUMENT_ID_2]", ...])`. This will allow you to query documents using specific document IDs.