The Loop Node in Cobalt allows users to iterate over entities or execute a series of actions for a fixed number of iterations.

Node Functionality

Loop node is like a repetitive steps executor within the workflow. It can:

  • Wrap around other nodes and execute them repetitively;
  • Execute nodes for fixed number of times using Fixed Iteration;
  • Execute as many times as there are items in an array using Array Iteration; &
  • Execute nodes repetitively based on case and break conditions using Do While;

To incorporate repetitive actions or iterate over arrays within a workflow, users simply place the desired action nodes inside the Loop Node and provide values for the input fields based on their requirements.

Actions

The Loop Node offers three distinct actions to choose from:

Iterating Array

Fixed Iteration

Do While

Input Fields

The input fields for the Loop Node vary based on the selected action. In case of Iterating Array, you need to provide the array which will determine the no. of times the loop will be executed while in Fixed iteration, you simply provide the Number of Iterations.

Templating items inside Loop Node

To access the array item that is being passed in the Loop Node, within any node for each iteration, it can be done so by calling array_item object. Consider you want to access an Id that is unique within each array item that is being passed in the Loop Node. To do so, do the following templating

{{node.<node_no.>.body.array_item.Id}}

When using Do While action, you might need to access the iteration count of the loop within the workflow. This can be accessed as

{{node.<no. of loop node>.body.iteration_count}}