Hi team! I'm looking for some guidance/clarificati...
# flyte-v1-support
c
Hi team! I'm looking for some guidance/clarification on the flyte conditional and how it interacts with right-shift (
>>
) objects (flyte v1) 🧵
In essence, my question is; is something like this allowed?
Copy code
# t1 is a flyte task
@workflow
def wf(...) -> ...:
  ...
  A, _ = t1(...)
  B = conditional("hi").if_(...)...
  A >> B
The reason i ask is because the output of t1 is used in the subworkflow launched by conditional B, but the DAG shows these two to be independent of one another unless i add the line for the rshift at the end
f
if output is used in conditional just pass it