Reputation: 115
I wonder if somebody would know how I can add multiple docs to my collection in the firestore with only using 1 write. Because I have more than 20.000 records but I don't want to pay for firestore. Is there a possibility to add multiple docs in 1 write ?
Thanks in advance.
Upvotes: 1
Views: 39
Reputation: 317372
It is not possible. Each document written costs 1 write. They can't be bundled together in an operation that is only billed a single write.
Upvotes: 1