wp
08/18/2022, 8:40 PMcontext.resources.dbt.cli(
"run-operation my_macro",
args={"type": value}
)
Is there a specific way I need to return my result from dbt ? On my test run the response only contains stdout of the dbt run but no resultAdam Bloom
08/18/2022, 8:45 PMcli_result = context.resources.dbt.run_operation("my_macro", {"type": value})
yield Output(cli_result)
- that'll create a DbtOutput
for youwp
08/18/2022, 8:47 PM