🧠 Logic Components
These components allow you to define conditions, alternatives, and scheduled flows in your SmartFlow workflows. They form a powerful foundation for automating processes based on specific rules.
❓ If (Conditional)
The If
component executes a set of actions only if a specified condition is met.
📝 Component Details
Name: If
Category: Logic
🔧 Parameters
- Condition
- Type:
Expression
- Description: A logical expression that determines whether the subsequent actions should be executed.
- Required: Yes
- Example:
user.age > 18
- Type:
🚀 How to Use
- Drag and drop the
If
component into your SmartFlow workspace. - Specify the condition that must be true for the actions to execute.
- Connect it to subsequent components or actions.
➡ Else
The Else
component specifies the actions to execute if the condition of the preceding If
block is not met.