Velir / dbt-ga4

dbt Package for modeling raw data exported by Google Analytics 4. BigQuery support, only.
MIT License
312 stars 134 forks source link

Fix streaming support for multi property configurations #257

Closed adamribaudo-velir closed 1 year ago

adamribaudo-velir commented 1 year ago

Description & motivation

Resolves #254

As noted by @FlorianASchroeder , PR #250 allowed the union of intraday data only for single-property configurations.

This update removes that limitation by leveraging the fact that both daily and intraday event tables start with 'events'. This means we can use a wildcard operation to query `events*to pull both daily and intraday records. Duplicate records will be deduped as part of thebase_ga4__events` qualify statement.

As a result, we can remove the intraday source from src_ga4.yml

Checklist