Graph Operators
Learn how to use dbt graph operators with the --select flag to navigate your project's execution graph, targeting specific models and their dependencies for precise execution in data pipelines.
Last updated
Was this helpful?
Was this helpful?
dbt run --select my_schema.*dbt run --select models/stagingdbt run --select +final_model
dbt run --select parent_model+dbt run --select @model_name
dbt run --select model_name@dbt run --select model1,model2,model3dbt run --select tag:nightly,staging.*dbt run --select tag:nightly,+final_modeldbt ls --select tag:nightly,+final_modeldbt run --select +2tag:critical+dbt test --select @tag:final_report@