What exporting GA4 to BigQuery means
The first thing worth clarifying is what travels across that link. What gets exported is neither the Analytics reports nor their finished metrics. What gets exported are the events exactly as they were collected, one per row, with their parameters nested inside the same row. The key event rate, the engaged session or the active user do not arrive as a number: they arrive as raw material from which you recalculate them if you need them.
The dataset created in BigQuery carries the property identifier in its name and holds one table per day. Each row brings the event name, the timestamp in microseconds, the pseudonymous identifier of the browser or the installation, the event parameters, the user properties, the ecommerce items and the traffic source data.
That nested structure is the practical difference from a report export into a spreadsheet. It forces you to write SQL with unnesting, and in return it allows questions the interface does not accept, because in the interface every report has already decided for you how the data is grouped.