image.png

In Flow Core, Exit does not refer to just one concept.

The next two meanings are the ones that matter most, because they represent the two core Exit concepts in Flow Core.

The Exit node

The Exit node is essentially an explicit boundary that means “this branch ends here.”

In one sentence: Exit is closer to “return from this branch” than to “panic stop.”

Mechanism

The most important role of Exit is that it serves as the output contract of a Sub Flow Graph.

So inside a subgraph, Exit is not just an optional end marker. It defines the interface by which the subgraph exposes its result to the outside.

UI