ordered_children#
- Task.ordered_children()#
Get the ordered task list held by this task. Sorting is in terms of the workflow order and only includes this task’s 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
C and D are the ordered children of task B.