I am running the following command to export my Firestore collection.
gcloud alpha firestore export gs://[...] --collection-ids='[...]'
The resulting export only contains documents at root level, but not any sub-collection under any documents.
How can I export all sub-collections from my collection?
I am following this doc from google.