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 --select 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

3 search results

vehicles_summary model

...A summary of vehicles by distance and speed...

columns: Vehicle type, Vehicle type columns: vehicle count, vehicle count columns: Avg distance traveled, Avg distance traveled Show 1 more
...{{ config(materialized='view') }} with summary as ( SELECT type as "Vehicle...

fast_vehicles_summary model

...A summary of vehicles by distance and speed...

columns: Vehicle type, Vehicle type columns: vehicle count, vehicle count Show -1 more
...{{ config(materialzied='view')}} with fast_v as (select * from {{ref('fast_...

fast_vehicles model

...Query fast vehicles...

columns: track_id, track_id columns: type, type columns: traveled_d, traveled_d Show 1 more
.../* Welcome to your first dbt model! Did you know that you can also configur...
Show -17 more