I read here that it is possible to use the in
keyword to query firestore, where the fields of a document are matched. I want to match the uids of the documents in my collection. Is it possible to get documents having certain uids only?
I have tried .where('id', 'in', idsArray)
and .where('uid', 'in', idsArray)
(only certain doc uids stored in idsArray) with no avail. Please help.