Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firestore empty result count as read? [duplicate]

I'd like to know if you fetch documents but there is no document to return, does this count as read at least once or count nothing which doesn't increase price?
I've been searching but I couldn't find the answer.
Any help is appreciated.

like image 996
Daibaku Avatar asked Nov 05 '18 03:11

Daibaku


1 Answers

From the official firebase documentation it clearly states that.

Minimum charge for queries
There is a minimum charge of one document read for each query that you perform, even if the query returns no results.

Source: https://firebase.google.com/docs/firestore/pricing#operations

like image 164
Philip Avatar answered Oct 06 '22 19:10

Philip