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

267 search results

stg_github__user model

...Table representing contributors to a git project...

columns: user_id, user_id columns: login_name, login_name columns: name, name Show 2 more
...with github_user as ( select * from {{ ref('stg_github__user_tmp') }} ), ma...

stg_github__issue_comment model

...Table that contains comments made on issues...

columns: issue_comment_id, issue_comment_id columns: issue_id, issue_id columns: user_id, user_id Show 0 more
...with issue_comment as ( select * from {{ ref('stg_github__issue_comment_tmp...

int_github__pull_request_reviewers model

columns: pull_request_id, pull_request_id columns: reviewers, reviewers columns: number_of_reviews, number_of_reviews Show 0 more
...with pull_request_review as ( select * from {{ ref('stg_github__pull_reques...

stg_github__team model

...Table containing teams and team details...

columns: team_id, team_id columns: description, description columns: name, name Show 3 more
...with base as ( select * from {{ ref('stg_github__team_tmp') }} ), fields as...

stg_github__pull_request_tmp model

columns: id, id columns: _fivetran_synced, _fivetran_synced columns: base_label, base_label Show 12 more
...select * from {{ var('pull_request') }}...

int_github__issue_labels model

columns: issue_id, issue_id columns: labels, labels Show -1 more
...with issue_label as ( select * from {{ ref('stg_github__issue_label') }} ) ...

int_github__repository_teams model

columns: repository_id, repository_id columns: repository, repository columns: repository_team_names, repository_team_names Show 0 more
...with repository as ( select * from {{ ref('stg_github__repository')}} ), re...

github__pull_requests model

...Basic information about pull_requests as well as additional fields about re...

columns: issue_id, issue_id columns: body, body columns: closed_at, closed_at Show 27 more
...with issue_joined as ( select * from {{ ref('int_github__issue_joined') }} ...

github__daily_metrics model

...Summary numbers for issues and pull requests by day ...

columns: day, day columns: number_issues_opened, number_issues_opened columns: number_issues_closed, number_issues_closed Show 7 more
...with github_issues as ( select * from {{ ref('github__issues') }} ), pull_r...

stg_github__issue_label_tmp model

columns: issue_id, issue_id columns: label, label columns: _fivetran_synced, _fivetran_synced Show 0 more
...select * from {{ var('issue_label') }}...

stg_github__requested_reviewer_history model

...Table containing when a user requests another user to review a pull request...

columns: pull_request_id, pull_request_id columns: created_at, created_at columns: requested_id, requested_id Show 1 more
...with requested_reviewer_history as ( select * from {{ ref('stg_github__requ...

stg_github__repository model

...Table representing the file structure of a directory under git control...

columns: repository_id, repository_id columns: full_name, full_name columns: is_private, is_private Show 0 more
...with repository as ( select * from {{ ref('stg_github__repository_tmp') }} ...

stg_github__pull_request_review_tmp model

columns: id, id columns: _fivetran_synced, _fivetran_synced columns: body, body Show 5 more
...select * from {{ var('pull_request_review') }}...

int_github__issue_comments model

columns: issue_id, issue_id columns: number_of_comments, number_of_comments Show -1 more
...with issue_comment as ( select * from {{ ref('stg_github__issue_label') }} ...

stg_github__requested_reviewer_history_tmp model

columns: created_at, created_at columns: pull_request_id, pull_request_id columns: requested_id, requested_id Show 3 more
...select * from {{ var('requested_reviewer_history') }}...

stg_github__issue_closed_history model

...Table to track when an issue is closed or re-opened...

columns: issue_id, issue_id columns: updated_at, updated_at columns: is_closed, is_closed Show 0 more
...with issue_closed_history as ( select * from {{ ref('stg_github__issue_clos...

stg_github__user_tmp model

columns: id, id columns: _fivetran_synced, _fivetran_synced columns: bio, bio Show 10 more
...select * from {{ var('user') }}...

stg_github__pull_request_review model

...Table containing reviews made to pull requests...

columns: pull_request_review_id, pull_request_review_id columns: pull_request_id, pull_request_id columns: submitted_at, submitted_at Show 2 more
...with pull_request_review as ( select * from {{ ref('stg_github__pull_reques...

stg_github__repo_team model

...Table representing the mapping relationships between repositiories and team...

columns: repository_id, repository_id columns: team_id, team_id Show -1 more
...with base as ( select * from {{ ref('stg_github__repo_team_tmp') }} ), fiel...

github__weekly_metrics model

...Summary numbers for issues and pull requests by week ...

columns: week, week columns: number_issues_opened, number_issues_opened columns: number_issues_closed, number_issues_closed Show 7 more
...with daily_metrics as ( select * from {{ ref('github__daily_metrics') }} ) ...
Show 247 more