The WAIT node pauses flow execution for a specified duration, useful for rate limiting, delays, or waiting for external conditions.Documentation Index
Fetch the complete documentation index at: https://hypha-docs.plinqx.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
WAIT nodes enable:- Delays: Add delays between operations
- Rate Limiting: Space out API calls to respect rate limits
- Polling: Wait before retrying operations
- Timing Control: Control execution timing
Configuration
Duration
Set wait duration:- Value: Numeric duration value
- Unit: Milliseconds (ms), seconds (s), minutes (m), hours (h)
- Minimum: 0 (no wait)
- Maximum: No hard limit (but consider flow timeout)
Examples
- 1 second:
1with units - 5 minutes:
5with unitm - 500 milliseconds:
500with unitms - 1 hour:
1with unith
Use Cases
Rate Limiting
Add delays between API calls to respect rate limits:Polling
Wait before checking status:Delayed Processing
Add delays for timing-sensitive operations:Output
WAIT node provides output:Best Practices
Consider Timeout
Account for wait time in flow timeout
Use Sparingly
Minimize wait times for better performance
Document Purpose
Document why wait is needed
Test Timing
Test wait durations in different scenarios
Next Steps
ACTION Node
Add delays between actions
TRY Node
Retry with delays