Documentation
Dataflows
Guides
Perform conditional branch processing

Implement conditional branching

Implement if condition

  1. from [Select Action], select [Function > Conditional branch].
  2. enter the condition in [Conditions for branching]. (It is possible to refer to it by {{ }}.)
  3. click [Add action] in [Execute action] to create the action.
  4. Implement the action.
  5. Select a branch action and test it by clicking [Test branches].
  6. Check if the return value of the branch action is returned according to the condition.

Implement else if condition

  1. after creating the branching action, add a branch from [Add else if].
  2. enter the condition in [Conditions for branching]. (You can also refer to it by {{ }}.)
  3. click [Add action] in [Execute action] to create the action.
  4. Implement the action.
  5. Select a branch action and test it by clicking [ Test branches].
  6. Check if the return value of the branch action is returned according to the condition.

Implement else condition

  1. after creating the branching action, check the [else] checkbox.
  2. click [Add action] in [Execute action] to create the action.
  3. Implement the action.
  4. Select the branch action and test it by clicking [ Test branches].
  5. Check if the return value of the action implemented in [if] and [else if] is returned if it does not match.