> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cognigy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Go To

<Frame>
  <img src="https://mintcdn.com/cognigy-15abf2ba/jD73u_IBHRit9B59/_assets/ai/develop/node-reference/logic/go-to.png?fit=max&auto=format&n=jD73u_IBHRit9B59&q=85&s=431859f52a2d1cf5c946f9659b882d15" alt="Go To Node configuration panel" style={{ width: 'auto' }} width="464" height="122" data-path="_assets/ai/develop/node-reference/logic/go-to.png" />
</Frame>

## Description

A Go To Node permanently switches the conversation to a target Flow. The target Flow is executed immediately when this Node is activated. The conversation doesn't automatically return to the Flow where the Go To Node was triggered.

<Tip>
  To switch back to the Flow where the Go To Node was triggered, add another Go To Node or use the [Execute Flow Node](/ai/agents/develop/node-reference/logic/execute-flow) instead.
</Tip>

<Accordion title="Using Go To and Execute Flow Together">
  A Go To Node overrides the execution of an Execute Flow Node. If an Execute Flow Node switches to a Flow containing a Go To Node, the Go To Node stops the original execution and the session stays in the Go To Node’s target Flow. This action prevents the normal behavior of the Execute Flow Node, which returns to the Flow it is located in.
</Accordion>

## Parameters

| Parameter   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Select Flow | Select the target Flow that is switched to whenever the Flow execution triggers the **Go To** Node. To manually enter the Flow ID, click **Manual Input** and enter the Flow ID. Click <img src="https://mintcdn.com/cognigy-15abf2ba/I0ba9I1paCAUpGLP/_assets/icons/black-and-white/target-flow.svg?fit=max&auto=format&n=I0ba9I1paCAUpGLP&q=85&s=a829f550bb73834106c8650fba92ac3c" alt="target-flow" width="25" height="25" data-path="_assets/icons/black-and-white/target-flow.svg" /> to open the target Flow. |
| Select Node | Select the target Node that is switched to whenever the Flow execution triggers the **Go To** Node. To manually enter the Node ID, click **Manual Input** and enter the Node ID. <br /><br />A Node must be set as an Entrypoint before it can be selected. To set any Node as an Entrypoint, use the [Set Entrypoint](/ai/agents/develop/nodes/overview#set-nodes-as-entrypoints) parameter.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |

<AccordionGroup>
  <Accordion title="Advanced">
    | Parameter                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
    | ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | Execution Mode           | The Execution Mode determines the behavior of the Go To Node. It can go to the target Node and continue, or it can wait for input.                                                                                                                                                                                                                                                                                                                                                                                                                                   |
    | Optionally Injected Text | If the Execution Mode is set to **Go to Node and continue**, you can overwrite the text with which to continue here. If no text is specified, input.text is used.                                                                                                                                                                                                                                                                                                                                                                                                    |
    | Optionally Injected Data | If the Execution Mode is set to **Go to Node and continue**, you can overwrite the data with which to continue here. If no data is specified, input.data is used.                                                                                                                                                                                                                                                                                                                                                                                                    |
    | Parse Intents            | The user decides whether we should **parse intents** within the sub Flow. This is disabled by default.<br /><br />If the **Parse Intents** parameter is enabled, Cognigy NLU reparses the Intents in the target Flow, using either [input.text](/ai/agents/develop/ai-agent-memory/input#accessing-input-properties) or the Optionally Injected Text.<br /><br />This parameter parses the input into the sub Flow, and the NLU then scores this text using the available Intents in the sub Flow. This parameter doesn't score based on Intents in the parent Flow. |
    | Parse Slots              | The user decides whether we should **parse slots** within the sub Flow. This is disabled by default.<br /><br />If the **Parse Slots** parameter is enabled, Cognigy NLU reparses the Slots in the target Flow, using either [input.text](/ai/agents/develop/ai-agent-memory/input#accessing-input-properties) or the Optionally Injected Text.<br /><br />This parameter parses the input into the sub Flow, and the NLU then scores this text using the available Slots in the sub Flow. This parameter doesn't score based on Slots in the parent Flow.           |
    | Absorb Context           | If this parameter is enabled, the default Context of the target Flow is applied to the current Context upon switching.                                                                                                                                                                                                                                                                                                                                                                                                                                               |
  </Accordion>

  <Accordion title="Loops">
    Cognigy.AI checks how often a Go To Node was activated without a user input in-between. The default setting for maximum loops is 4, but it is configurable for on-premises installations.
  </Accordion>
</AccordionGroup>
