This message was deleted.
# ask-questions
w
This message was deleted.
f
Yes, multiple daily tables is fine. BigQuery let's you use table names like
ga_events_*
. We support the GA4 schema out of a the box. After you connect to BigQuery, it will ask you what format your data is in, and GA4 is one of the options.
For your tracking callback, I think you want to use a different version.
Copy code
ReactGA.event("viewed_experiment", {
  experiment_id: experiment.key,
  variation_id: result.variationId
})
w
thanks
140 Views