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

Remove non-functional example command and fix other one #5272

Merged
merged 7 commits into from
Apr 16, 2024
Merged
6 changes: 3 additions & 3 deletions website/docs/reference/node-selection/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Constructing and debugging your selection syntax can be challenging. To get a "
dbt ls --select "path/to/my/models" # Lists all models in a specific directory.
dbt ls --select "source_status:fresher+" # Shows sources updated since the last dbt source freshness run.
dbt ls --select state:modified+ # Displays nodes modified in comparison to a previous state.
dbt ls --select "result:<status>+ state:modified+ --defer --state ./<dbt-artifact-path>" # Lists nodes that match certain [result statuses](/reference/node-selection/syntax#the-result-status) and are modified.
dbt ls --select result:<status>+ state:modified+ --state ./<dbt-artifact-path> # Lists nodes that match certain [result statuses](/reference/node-selection/syntax#the-result-status) and are modified.
dbeatty10 marked this conversation as resolved.
Show resolved Hide resolved
```

<Snippet path="discourse-help-feed-header" />
Expand Down Expand Up @@ -186,7 +186,7 @@ After issuing one of the above commands, you can reference the results by adding

```bash
# You can also set the DBT_STATE environment variable instead of the --state flag.
dbt run --select "result:<status> --defer --state path/to/prod/artifacts"
dbt run --select result:<status> --defer --state path/to/prod/artifacts
dbeatty10 marked this conversation as resolved.
Show resolved Hide resolved
```

The available options depend on the resource (node) type:
Expand All @@ -205,7 +205,7 @@ The available options depend on the resource (node) type:
The state and result selectors can also be combined in a single invocation of dbt to capture errors from a previous run OR any new or modified models.

```bash
dbt run --select "result:<status>+ state:modified+ --defer --state ./<dbt-artifact-path>"
dbt run --select result:<status>+ state:modified+ --defer --state ./<dbt-artifact-path>
dbeatty10 marked this conversation as resolved.
Show resolved Hide resolved
```

### Fresh rebuilds
Expand Down
Loading