If a document in Cloud Firestore has a subcollection, are the documents in those subcollection included in the parent document's size? For example, if I have data like:
rootCollection/
parentDocument:
field1: "value1"
field2: "value2"
...
subCollection/
childDocument:
anotherField: "OfGreen"
...
is the size of childDocument
included in the size of parentDocument
From the storage size calculation documentation, it doesn't sound like the contents of subcollections are included in the parent document sizes, but I just wanted to clarify.
Thanks!