The If Condition node creates branching logic in your workflow. It evaluates a condition and routes execution down a True or False path.


When to Use

Use If Condition whenever you need to filter, segment, or route your workflow based on data values. Common use cases include filtering leads by company size, checking sentiment results, or verifying enrichment data.


Common Conditions

Condition

Use Case

likes > 100

Filter for high-engagement posts

country = "US"

Target specific geographies

companyHeadCount > 50

Filter by company size

jobTitle contains "Director"

Target specific seniority levels


Branch Paths

Path

Description

True

Executed when the condition is met

False

Executed when the condition is not met



Pro tip: Chain multiple If Condition nodes to create complex qualification logic. Place the cheapest filters first to save credits on enrichment nodes.