When i call FirebaseFirestore.instance.collection('someName').snapshot
Is that mean that it is 1 read for pricing, or if collection have 20 docs, its 20 reads?
CodePudding user response:
The billing unit is called a "document read" on the pricing page. If you read 20 documents, you're charged for 20 document reads.
