Skip to main content

What are conditions?

Conditions can be used to apply decision making within a flow.

  • "If" is the condition that is evaluated. It could be a logical expression, such as "if the temperature is above 30°C."

  • "Then" specifies the action to be taken if the condition is true. For example, "then turn on the air conditioner."

In essence, if the condition is met (true), the specified action is executed. If the condition is not met (false) the action in the "false" branch will be executed.