Say I have a collection called text_messages in firestore that has 500 documents in it, and I know the doc_id of one of those documents.
I want to execute the following code to fetch the data of that document down:
doc = db.collection("text_messages").document("my_doc_id").get()
data = doc.to_dict()
So my question is this: does this count as 1 read or 500 reads? I'm asking from a billing standpoint and want to optimize cost.