Is there a way to make sure that ops are run seque...
# ask-community
s
Is there a way to make sure that ops are run sequentially in Dagster? I am running a two op job and can’t seem to figure out how to make sure one op is done before executing the next
d
Add a None input and output to the ops
daggy love 1
j
Hi @Sachin Loecher Daniel is correct, Nothing dependencies are what you want to use in this case. Here's a docs page with an example https://docs.dagster.io/concepts/ops-jobs-graphs/graphs#defining-and-constructing-dependencies
s
Thank you that really helps!