Hi there everyone!
My name is Alessandra, and I am working in a proyect and we want to develop a Cloud Function, triggered by http, that will recieve a file (.csv or json) with multiples document id to be searched in Firestore Database, using python.
As the 'IN' option supports up to 10 comparison values at a time, we cannot use it.
We've heard there is a method, Firestore.getAll(), but is only available for Java, isn't?
We are wondering if we can load the docs id's file in a collection in Firestore and make a match with the collection we want to search, and retrieve the documents details. Is that posible?
Or maybe there are other ways to do what we need. We just don't want to read each document in a loop, it would be slower and more expensive.
Do you know if there is a workaround for the Firebase Query "IN" Limit to 10?
Has anyone already faced this same problem? If so, how do you suggest us deal with it?
I will be trully grateful with you help.
Regards.