Hi, is it possible to do conditional branching on ...
# ask-community
a
Hi, is it possible to do conditional branching on subgraphs, similar to this example with ops? https://docs.dagster.io/concepts/ops-jobs-graphs/graphs#with-conditional-branching My use case is that I need to export data to one of several possible third-party services depending on the account the job is being executed for. So far I've assumed there would be one subgraph implementation for each service. Is there a better approach I should try instead? Thank you!
I think I figured it out, I wasn't passing
_input
(as used in the Dagster docs example) all of the way through to an
op
in the subgraphs.
🌈 1