Conditional Execution
block allows for the evaluation of specific conditions to determine the flow of execution. This block effectively directs operations based on whether the specified condition is fulfilled, providing flexibility in processing data dynamically.
I/O | Feature | Type | Simple Explanation |
---|---|---|---|
input | condition_type | selector | Defines which type of condition is applied for filtering. |
input | condition | string | The specific condition required to trigger a particular action. |
input | value | any | The data that needs to be evaluated against the condition. |
input | condition_value | string | The standard or benchmark used for comparison with the value. |
output | if_true | any | Returns this value if the conditions are met successfully. |
output | else | any | Returns this value if the conditions are not met. |
if_true
will be executed. Conversely, if it evaluates to false, only the
subflow connected to else will proceed.Conditional Execution
block proves invaluable!