icons
Lineage Graph

Welcome!

Welcome to the auto-generated documentation for your dbt project!

You can use the Project and Database navigation tabs on the left side of the window to explore the models in your project.

Project Tab

The Project tab mirrors the directory structure of your dbt project. In this tab, you can see all of the models defined in your dbt project, as well as models imported from dbt packages.

Database Tab

The Database tab also exposes your models, but in a format that looks more like a database explorer. This view shows relations (tables and views) grouped into database schemas. Note that ephemeral models are not shown in this interface, as they do not exist in the database.

Graph Exploration

You can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.

On model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the Expand button at the top-right of this lineage pane, you'll be able to see all of the models that are used to build, or are built from, the model you're exploring.

Once expanded, you'll be able to use the --models and --exclude model selection syntax to filter the models in the graph. For more information on model selection, check out the dbt docs.

Note that you can also right-click on models to interactively filter and explore the graph.


More information

197 search results

dbt_utils.redshift__type_string macro

dbt_utils.default__type_string macro

dbt_utils.type_string macro

dbt_utils.default__concat macro

dbt_utils.concat macro

dbt_utils.default__replace macro

dbt_utils.replace macro

dbt_utils.bigquery__except macro

dbt_utils.default__except macro

dbt_utils.except macro

finance.messages source

...This model contains all active and inactive messages created for each compa...

columns: id, id columns: company_id, company_id columns: config, config Show 4 more

finance.message_viewers source

...This model contains who and when viewed a particular message for each compa...

columns: id, id columns: beacon_device_id, beacon_device_id columns: billing_id, billing_id Show 5 more

finance.company source

...This model contains our current companies....

columns: id, id columns: created_at, created_at columns: name, name Show 2 more

finance.billings source

...This model contains all of the billing records created for each company....

columns: id, id columns: company_id, company_id columns: mailbox_subtotal, mailbox_subtotal Show 4 more

finance_messages_snapshot snapshot

columns: message_id, message_id columns: active, active columns: updated_at, updated_at Show 4 more
... {{ config( target_schema='snapshots', unique_key='message_id', strategy='t...

stg_finance__messages model

columns: id, id columns: company_id, company_id columns: config, config Show 4 more
...with source as ( select * from {{ source('finance', 'messages') }} ), final...

stg_finance__message_viewers model

columns: id, id columns: beacon_device_id, beacon_device_id columns: billing_id, billing_id Show 5 more
...with source as ( select * from {{ source('finance', 'message_viewers') }} )...

stg_finance__company model

columns: id, id columns: created_at, created_at columns: max_viewers, max_viewers Show 2 more
...with source as ( select * from {{ source('finance', 'company') }} ), final ...

stg_finance__billings model

columns: id, id columns: company_id, company_id columns: period_starts_on, period_starts_on Show 4 more
...with source as ( select * from {{ source('finance', 'billings') }} ), final...

mart_billings model

...This model contains each company_id and the number of billing periods it to...

columns: company_id, company_id columns: billings_prior_to_payment, billings_prior_to_payment Show -1 more
...with source as ( select * from {{ ref('stg_finance__billings') }} ), final ...
Show 177 more