Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add nodes to project state doc #5654

Merged
merged 28 commits into from
Jul 10, 2024
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4a0a386
add a 'interact w dbt cloud features' section
mirnawong1 Jun 11, 2024
f01edb8
add new page to highlight interact w cloud features.
mirnawong1 Jun 11, 2024
dbc18db
add links
mirnawong1 Jun 11, 2024
61e038b
Update website/docs/docs/collaborate/interact-with-dbt-cloud.md
mirnawong1 Jun 11, 2024
b7fe9de
Update website/docs/docs/collaborate/interact-with-dbt-cloud.md
mirnawong1 Jun 11, 2024
8b75794
Update website/docs/docs/collaborate/interact-with-dbt-cloud.md
mirnawong1 Jun 11, 2024
5caf7e9
Rename interact-with-dbt-cloud.md to access-from-dbt-cloud.md
mirnawong1 Jun 11, 2024
2e1e5ea
Update website/sidebars.js
mirnawong1 Jun 11, 2024
0551fe9
Update website/docs/docs/collaborate/access-from-dbt-cloud.md
mirnawong1 Jun 11, 2024
f6cb244
Update access-from-dbt-cloud.md
mirnawong1 Jun 11, 2024
9f50046
add faq
mirnawong1 Jun 11, 2024
e20f735
Update access-from-dbt-cloud.md
mirnawong1 Jun 11, 2024
f14839c
Update access-from-dbt-cloud.md
mirnawong1 Jun 11, 2024
755dbed
Update website/docs/docs/collaborate/access-from-dbt-cloud.md
mirnawong1 Jun 12, 2024
3706413
Update website/docs/docs/collaborate/access-from-dbt-cloud.md
mirnawong1 Jun 12, 2024
bc32bb2
Update website/docs/docs/collaborate/dbt-explorer-faqs.md
mirnawong1 Jun 12, 2024
1b6b3ea
update img and fold matt's feedback
mirnawong1 Jun 12, 2024
1cc370a
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 Jun 12, 2024
78b7ae4
add nodes to project state doc
mirnawong1 Jun 13, 2024
d597e21
Update website/docs/docs/dbt-cloud-apis/project-state.md
mirnawong1 Jun 13, 2024
d89230a
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 Jun 17, 2024
f42dc13
Update project-state.md
mirnawong1 Jun 18, 2024
756ff28
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 Jun 18, 2024
7e8f42d
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 Jul 10, 2024
84e3c14
Merge branch 'mirnawong1-patch-26' of https://github.com/dbt-labs/doc…
mirnawong1 Jul 10, 2024
72d0b3a
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 Jul 10, 2024
57a7216
fold in natalies feedback
mirnawong1 Jul 10, 2024
e314500
Merge branch 'mirnawong1-patch-26' of https://github.com/dbt-labs/doc…
mirnawong1 Jul 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions website/docs/docs/dbt-cloud-apis/project-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,24 @@ Most Discovery API use cases will favor the _applied state_ since it pertains to

## Affected states by node type

The following table shows the states of dbt nodes and how they are affected by the Discovery API.

| Node | Executed in DAG | Created by execution | Exists in database | Lineage | States |
|-----------------------------------------------|------------------|----------------------|--------------------|-----------------------|----------------------|
| [Model](/docs/build/models) | Yes | Yes | Yes | Upstream & downstream | Applied & definition |
| [Source](/docs/build/sources) | Yes | No | Yes | Downstream | Applied & definition |
| [Seed](/docs/build/seeds) | Yes | Yes | Yes | Downstream | Applied & definition |
| [Snapshot](/docs/build/snapshots) | Yes | Yes | Yes | Upstream & downstream | Applied & definition |
| [Analysis](/docs/build/analyses) | No | No | No | Upstream | Definition |
| [Data test](/docs/build/data-tests) | Yes | Yes | No | Upstream | Applied & definition |
| [Exposure](/docs/build/exposures) | No | No | No | Upstream | Definition |
| [Metric](/docs/build/metrics-overview) | No | No | No | Upstream & downstream | Definition |
| [Semantic model](/docs/build/semantic-models) | No | No | No | Upstream & downstream | Definition |
| [Group](/docs/build/groups) | No | No | No | Downstream | Definition |
| [Macro](/docs/build/jinja-macros) | Yes | No | No | N/A | Definition |
| [Metric](/docs/build/metrics-overview) | No | No | No | Upstream & downstream | Definition |
| [Model](/docs/build/models) | Yes | Yes | Yes | Upstream & downstream | Applied & definition |
| [Saved queries](/docs/build/saved-queries) <br /> (not in API) | N/A | N/A | N/A | N/A | N/A |
| [Seed](/docs/build/seeds) | Yes | Yes | Yes | Downstream | Applied & definition |
| [Semantic model](/docs/build/semantic-models) | No | No | No | Upstream & downstream | Definition |
mirnawong1 marked this conversation as resolved.
Show resolved Hide resolved
| [Snapshot](/docs/build/snapshots) | Yes | Yes | Yes | Upstream & downstream | Applied & definition |
| [Source](/docs/build/sources) | Yes | No | Yes | Downstream | Applied & definition |
| [Unit tests](/docs/build/unit-tests) | Yes | Yes | No | Downstream | Definition |


## Caveats about state/metadata updates

Expand Down
Loading