Wait
flow.wait Logic v0.1.0 Pauses the flow for a duration or until a timestamp, then passes the input through unchanged. Async (non-blocking); not durable across process restarts.
Ports
| Direction | Port | Label |
|---|---|---|
| Input | input | Input |
| Output | output | Output |
Properties
| Property | Type | Default | Description |
|---|---|---|---|
Wait modemode | select | "duration" | Wait a fixed duration, or until a specific point in time. The wait is in-memory — it does not survive a process restart. durationuntil |
Amountamount | int | 5 | How long to wait, in the unit below. Shown when (mode ?? "duration") === "duration" |
Unitunit | select | "seconds" | Unit for the wait amount. secondsminuteshours Shown when (mode ?? "duration") === "duration" |
Untiluntil | string | — | ISO timestamp (e.g. 2026-06-10T15:00:00Z) or epoch milliseconds to wait until. A time in the past doesn't wait at all. Shown when mode === "until" |
This page is generated from the node registry by gen-node-docs.mjs on every
site build — ports, properties, defaults and visibility rules cannot drift from the code.