So my current charge is:
148 reads
13 writes
12 deletes
My question is, how is the read counted.
In my code I only got this function
databaseReference
.collection("test")
.document(firebaseUser.uid)
.setData({'title': '$name', 'desc': '$description'});
So basically I tested the function a couple of times and I am wondering why I got that high reads without ever querying the result.
The deletes come from me manually deleting these Sets on the Firebase Website.