> For the complete documentation index, see [llms.txt](https://manuals.dialox.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://manuals.dialox.ai/studio/flows/nodes/control-flow-branch.md).

# Control flow: Branch

A Flow can branch into two or more paths in several ways. The nodes [Ask: Choice](/studio/flows/nodes/ask-choice.md) and [Iterate: Iterate](/studio/flows/nodes/iterate-iterate.md) use user input to choose the correct path. For branching options without direct user input, the Branch node variant can be used.

There are no specific properties for this node variant (except for the default [advanced](/studio/flows/nodes.md#advanced-node-properties) node properties). The behaviour of the branch is defined by its links.

<figure><img src="/files/jwGScw1SpUsArMp1RaoS" alt=""><figcaption></figcaption></figure>

The system will determine which link to follow by evaluating the corresponding conditions. You can click the link arrow to edit the details in the side panel.

The below example shows the link that is chosen when the conversation is executed within office hours, because it only evaluates `true` when the `online` tag is set.

<figure><img src="/files/59iObmaBQpBywtdxOcCy" alt=""><figcaption></figcaption></figure>

| Property  | Description                                                                                       | Explanation                                    |
| --------- | ------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
| Condition | The [condition](/studio/flows/conditions.md) that determines whether to execute or skip this node | See [Conditions](/studio/flows/conditions.md). |
| Tags      | [Tags](/settings/app-settings/tags.md) to evaluate                                                |                                                |
| Label     | Label to show in the Flow                                                                         | Just for design purposes                       |

## Resources

* [Nodes](/studio/flows/nodes.md)
* [Conditions](/studio/flows/conditions.md)
* [Tags](/settings/app-settings/tags.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://manuals.dialox.ai/studio/flows/nodes/control-flow-branch.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
