Fluxyn Docs
NodesData

Filter

Lets matching executions continue and silently stops non-matching ones.

Data

Use this when you want a guard clause instead of a true/false branch.

When to use it

  • Drop events that do not match required conditions.
  • Keep a flow simple when you only care about the pass case.

Routing behavior

Continues only when the configured conditions pass. Non-matching executions stop on this node.

Properties

PropertyTypeRequiredDetails
conditions
conditions
conditionsOptionalConditions to filter data. Only matching data passes through.
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.

Common mistakes

  • Non-matching executions stop quietly.
  • Use If instead when you need a false path.

Related nodes