NodesUtility
Wait / Delay
Pauses the current flow for a set amount of time.
Utility
Use this when the next step should happen after a short delay instead of immediately.
When to use it
- Delay a follow-up request.
- Space out actions in the same flow.
Routing behavior
Pauses the current path and then continues on the connected downstream path.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
durationMs durationMs | number | Optional | Time to wait in milliseconds |
Common mistakes
- Long waits can make debugging feel slower.
- Use only when timing is important to the business logic.