I am using the Firebase Extension for BigQuery. https://firebase.google.com/products/extensions/firestore-bigquery-export
The document data that shows up in big query is all crammed into one string field called data. This is not usable as I can't query on it.
If I import the data from a firestore export or backup it comes in as expected with each document property in its own field.
Any ideas on how to get the Firebase Extension for BigQuery to work the same as transferring data from an export?
Data from Extension
SELECT * FROM `qmtbc-dev.qmtbc_dev_export.members_raw_latest`
Data from Export/Backup
SELECT * FROM `qmtbc-dev.qmtbc_dev_export.membersExport`
EDIT:
It would be good to know if this is by design or something I have not set up correctly in the configuration.