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

16 search results

analytics.to_date_dim macro

analytics.get_catalog_schema_namespace macro

analytics.get_schema_namespace macro

analytics.get_tenants macro

analytics.get_common_schema_namespace macro

teachers model

...All teachers across all accounts and tenants....

columns: id, id columns: External ID, External ID columns: Name, Name Show 36 more
...{% for tenant in get_tenants() %} {% set catalog_schema_name = get_catalog_...

students model

columns: id, id columns: External ID, External ID columns: Name, Name Show 23 more
...{% for tenant in get_tenants() %} {% set catalog_schema_name = get_catalog_...

projects model

columns: id, id columns: Name, Name columns: Status, Status Show 31 more
...{% for tenant in get_tenants() %} {% set catalog_schema_name = get_catalog_...

lessons model

columns: id, id columns: Class, Class columns: Lesson Report ID, Lesson Report ID Show 18 more
...{{ config( materialized='table', unique_key='ID' ) }} {% for tenant in get_...

engagement_by_teacher model

columns: id, id columns: Date, Date columns: Teacher, Teacher Show 41 more
...{{ config( materialized='incremental', unique_key='ID' ) }} select coalesce...

engagement_by_student model

columns: id, id columns: Date, Date columns: Student, Student Show 19 more
...{{ config( materialized='incremental', unique_key='ID' ) }} select coalesce...

engagement_by_class model

columns: id, id columns: Date, Date columns: Class, Class Show 17 more
...{{ config( materialized='incremental', unique_key='ID' ) }} select coalesce...

engagement_by_account model

columns: id, id columns: Date, Date columns: Account, Account Show 23 more
...{{ config( materialized='incremental', unique_key='ID' ) }} select coalesce...

dates model

columns: date_dim_id, date_dim_id columns: date_actual, date_actual columns: epoch, epoch Show 27 more
...SELECT TO_CHAR(datum, 'yyyymmdd')::INT AS date_dim_id, datum AS date_actual...

classes model

...All clsses across all accounts and tenants....

columns: id, id columns: Name, Name columns: School Year, School Year Show 30 more
...{% for tenant in get_tenants() %} {% set catalog_schema_name = get_catalog_...

accounts model

...All school accounts across all tenants....

columns: id, id columns: Name, Name columns: Plan, Plan Show 23 more
...{% for tenant in get_tenants() %} {% set catalog_schema_name = get_catalog_...
Show -4 more