Hello, I have been using dagster-dbt in my project...
# ask-community
l
Hello, I have been using dagster-dbt in my projects and it has worked very well so far. dbt has a relatively new command called build. Are there plans to add this command to dagster-dbt in the near future?
o
hi @Leo Kell -- good call! This is definitely something we should add in first-class support for, but if you want to take advantage of this command right now, there's always the generic cli() function on the dbt_cli_resource.
this would look like:
context.resources.dbt.cli("build")
l
Thanks @owen! That's good to hear, and I can definitely use the general
cli()
function for now.
1