I'm grabbing some data stored in a Firestore instance:
const someData = firestore
.collection("my-collection")
.get()
.then(res => res.docs.map(
doc => doc.data()
))
);
There are probably around 3.5K objects being returned from an unfiltered call.
I've hit my daily reads quota quite quickly. Does it count each object as a read? It's not particularly clear to me from reading the docs.