Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Condition | C | Boolean | Item | The condition to match |
Value A | a | Any | Item | The item to choose from if the condition is true |
Value B | b | Any | Item | The item to choose from if the condition is false |
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Result | R | Any | Item | The chosen item |
Feed in a Boolean condition (true/false)
This can be a Boolean node, or the result of a node such as equals, greater than, or an Input Parameter with the Boolean type.
You can also “hard code’ the boolean condition with the toggle on the node itself. This will make the result always true or always false if you use this method.
Define the “true” condition
Connect to the A input
Define the “false” condition
Connect to the B input
The output value will change between A or B based on meeting the boolean conditional.
A ternary condition testing if the area is greater than 200000sf
The result
See Build your First Flow for a Ternary If example!