ordered_children#
- WorkflowWrapper.ordered_children(recompute=True)#
Get the ordered task list held by the workflow. Sorting is in terms of the workflow order and only includes the top-level tasks, while other tasks can be obtained by calling ordered_children() on a parent task. Given the workflow:
Workflow ├── A ├── B │ ├── C │ └── D └── E
the ordered children of the workflow are A, B, E, while B has ordered children C and D.