I'm currently using the Export Collections to BigQuery
Firebase Extension.
This is a Firebase Function that periodically updates Firestore Collections to BigQuery.
This is great, but it seems to put Firestore Document Data into a "data" column inside BigQuery.
My question, how would I go about getting this JSON out of the data column into separate columns in BigQuery. Luckily my JSON/Firestore documents are not nested and are flat and I intend to keep it that way.
Any advice would be great. I'm aware of https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions but am struggling to find the right SQL query to achieve this.