Skip to main content

Control

Is Truthy? / Is Falsy?

Whether a value is truthy or falsy (falsy includes null, 0, empty string, etc., as documented on the node).

Choose Value (Mux)

Outputs one of two inputs depending on a boolean condition.

Route Value (Demux)

Sends the input to one of two outputs based on a condition.

Choose Value by Case

Like a switch: compares a test value against cases and outputs the value for the matching case.

Fallback (Coalesce)

Walks a list of candidates in order and returns the first non-null or first truthy value, depending on the selected mode.

Passthrough

Copies input to output (mainly for testing or graph layout).