STRING_CONDITION
STRING_CONDITION node.
What it does
STRING_CONDITION node.
Inputs & outputs
| Input handle |
|---|
| value |
| Output handle |
|---|
| true |
| false |
Configuration
No configuration.
Example
How it works
STRING_CONDITION compares two string values (left and right) using the configured operator and emits {"value": true|false}. Supported operators are EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS, STARTS_WITH, ENDS_WITH, IS_EMPTY, and IS_NOT_EMPTY (the right operand is ignored for the last two). Both sides are coerced to strings before comparison. Wire the value output into a CONDITIONAL node to branch.
Example
Scenario: A Workflow routes inbound webhook events by type.
Wire the eventType field from the webhook body into left. Set right to "payment.success" and choose operator EQUALS. Connect value to a CONDITIONAL node — the true branch triggers a receipt email, the false branch handles other event types.