Reputation: 361
I need to rest api upload a lot of documents to Cloud Firestore. I figured out how to load one document. But it takes a lot of time. I want to send several documents by one request. I just can’t do how it can be done ....
Upvotes: 1
Views: 384
Reputation: 317372
It doesn't appear to be possible. Consider instead beginning a transaction, then committing multiple documents in that transaction. You're looking at two requests in that case.
Upvotes: 1