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

DirectionPortLabel
InputinputInput
OutputoutputOutput

Properties

PropertyTypeDefaultDescription
Wait mode
mode
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
Amount
amount
int 5 How long to wait, in the unit below.
Shown when (mode ?? "duration") === "duration"
Unit
unit
select "seconds" Unit for the wait amount.
secondsminuteshours
Shown when (mode ?? "duration") === "duration"
Until
until
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.