Fluxyn Docs

If / Condition

Branches the flow into true or false paths based on conditions.

Logic

Use this when one event can lead to different actions depending on data like country, plan, or order value.

When to use it

  • Send high-value purchases down a different path.
  • Skip a step when a condition is not met.

Routing behavior

Routes the flow to the true or false branch based on the configured conditions.

Properties

PropertyTypeRequiredDetails
conditions
conditions
conditionsOptionalConditions that determine branching
combinator
combinator
selectOptionalHow to combine multiple conditions
ignoreCase
ignoreCase
booleanOptionalIgnore case when comparing string values
convertTypes
convertTypes
booleanOptionalIf the type of an expression doesn't match the type of the comparison, try to cast the expression to the required type. E.g. for booleans "false" or 0 will be cast to false.

Common mistakes

  • Make sure both branches are intentional.
  • Use the correct operator for the value type you are comparing.

Related nodes