
Core Functionality
The Wait Node pauses workflow execution for a specified amount of time before continuing to the next node. It can:- Delay execution for precise time periods
- Create time-based workflow sequences
- Implement retry mechanisms with delays
- Synchronize workflow timing with external events
- Manage rate limiting and throttling
Properties
-
Unit
The time unit for the wait duration. Supported units are:
- second: Wait in seconds (1, 5, 30, 60)
- minute: Wait in minutes (1, 5, 15, 60)
- hour: Wait in hours (1, 2, 6, 12, 24)
- Value The numeric value representing the wait duration in the specified unit. This must be a positive integer.

