GuidePlatformv1
Break Iterator
Learn how to effectively use the break loop to halt loops in this informative document. Discover how it works when a specific condition is met, and understand that break loops only affect the nearest loop. Gain insights into handling nested loops and thei
It is possible to halt an Array Iterator's iterations. This is usually only done based on a conditional evaluation where a certain condition requires that iteration be halted.
Within an iterator's path, click a "+" icon to add the break:


Breaks are scoped to their nearest iterator.
If a break is performed within a nested iterator, only the inner iterator is halted.
Related docs
Last updated April 4, 2026