Skip to main content

Logical: One Of

First-non-null selector. Reads N candidates on the unlimited value input and emits the first one that is present and matches Value type. Useful for cascading fallbacks (primary OR secondary OR default). Skips silently when nothing matches.

Example
Value type: String
Inputs (in order): null, "", "alice"
Output: "alice"

Parameters

Value typeREQUIRED

Wire type the output is constrained to (String, Number, Bool, JSON, Date, …). Inputs of other types are ignored.

Input

ValueREQUIRED

One or more candidate values, each wired to its own slot on the unlimited value input. Evaluated in input-connection order.

Output

Value

The first input matching Value type. Skipped silently if none match.