If I have a `FlyteWorkflowExecution` which has a n...
# flyte-support
h
If I have a
FlyteWorkflowExecution
which has a node which is a subworkflow, what is the principled way to get the
FlyteWorkflow
object from that node? I know how to get the
FlyteNodeExecution
but I can't find a way to fetch the actual underlying workflow that is based on.
there is
parent_ex.flyte_workflow.sub_workflows[0]
but it is unclear to me how to match it to the node if there are several
a
@handsome-airline-36833 have you tried with the `workflow_executions`attribute from FlyteNodeExecution? maybe from there you could extract the actual workflow
h
Hm it's been a while since I tried this. I'll take a look when I get a chance
Thanks for the suggestion!