Branches
Branches let a workflow take different paths depending on conditions.
#What it is
Branches handle the reality that not every case should follow the same steps.
#Key capabilities
- Split a workflow into paths
- Handle different cases
- Combine with conditions
- Keep complex flows organized
#How to use it
1
Add a branch
Define the split point.
2
Set paths
Decide what each path does.
3
Test
Confirm each path behaves.
Tip
Keep branches few; too many paths make a workflow hard to reason about.
Was this page helpful?