-- Fact model: thin wrapper exposing all columns from a transform model. -- Most common pattern — use dbt_utils.star() to forward all columns. select {{ dbt_utils.star(ref('')) }} from {{ ref('') }} -- Optional: add a lightweight filter if needed -- where is_active = true