Hello, I am trying to build a simple dbt job to ex...
# integration-dbt
t
Hello, I am trying to build a simple dbt job to execute dbt seed and dbt run. So I created the following job definition :
@job
def dbt_no_asset_job():
dbt_run_op(start_after=dbt_seed_op())
When looking at the job in dagit it generates the attached graph. Why don't I see the depedency between the two ops in the graph ? Am I missing something in my job definition ? It seems the dependency is correct if I start a run. Thanks
This might be a non issue. It seems I had to refresh dagit page for the change to show up in the graph. It's now fixed.