Skip to content

Condition Block

Branch your workflow based on conditions.

Operators

OperatorDescription
==Equal to
!=Not equal to
>Greater than
<Less than
containsString contains

Example

javascript
if (input.length > 100) {
  // Long text path
} else {
  // Short text path
}

AI Workflow Editor