I have this line in nodejs:
db.collection("foo").doc(fooId).set(fooDtoModified);
If I return before this line, I see certain amount of reads, writes. If I return right after this line, I see 9 reads and 1 write more. I understand the write, but what causes the 9 reads?
thanks
Recognized by Google Cloud Collective
1