Taylor Wood
06/09/2022, 2:40 PM@graph(...)
def my_graph(...):
# what Python is allowed/unsupported in these graph impls?
the only examples I can find in the docs are trivial besides DynamicOutput.map/collect, so I’m wondering if there are more details somewhere.if
statement?johann
06/09/2022, 3:44 PMif
inside a graph- instead you would use conditional outputs that cause a downstream step to skip. https://docs.dagster.io/concepts/ops-jobs-graphs/jobs-graphs#conditional-branchingTaylor Wood
06/09/2022, 3:46 PM