> For the complete documentation index, see [llms.txt](https://docs.wem.io/platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wem.io/platform/wemmodeler/flowcharts/navigation.md).

# Navigation Node

When the flowchart reaches the navigation node, the application will open the specified navigation point and continue from there.&#x20;

There are no exits and there is only one property: the Name. The name is the specified Navigation Point and cannot be changed in the flowchart. To learn more about Navigation Points, read the specific article on [Navigation](/platform/wemmodeler/navigation.md).

Important to keep in mind for the security of your applications is that Navigation Nodes adhere to the `Visible When` property as defined in the Navigation Item. \
A decision node with the same expression as the navigation point can be used to specifically check the same expression in case the flowchart is also called directly (not via navigation).

{% hint style="info" %}
**Best practice:** \
Use the **visible when** property only for controlling who can see menu items, and manage access control also specifically at the start of your flowchart. Using a calculated field in a decision node, as shown in the image below, is the most effective (and reusable) way to protect certain flowcharts from unauthorized access.

![](/files/efdvCKYSY6ZnglkRHmkH)

When a user has the correct authorizations, they will continue through the normal flow via the "yes" exit, while unauthorized users will be sent to the unauthorized flow.
{% endhint %}

{% hint style="warning" %}
Navigation Nodes can be used to change the active item on your Menu just as if a user has clicked the menu item.

However - understanding the [Navigation and Session](/platform/wemmodeler/navigation.md#navigation-and-session) behaviour is important.&#x20;

If you are using a Navigation Node to go to a specific flowchart, with the intention to continue a current process: wrong! You will lose values in Transient Fields if they are not placed within the Session Folder to keep them available across requests.&#x20;

In this case, you should directly link to the specific flow using the sub-flowchart node.

Only use a navigation node in your flow, if:

* Navigation Item is a Subroutine (with an end-node) that should return to the starting point of your current flow.
* You really want to change the active menu item for the user - and you have made sure that:
  * any transient field necessary for the process, is available in the Session Folder,&#x20;
  * or the Navigation Item you point to, is supposed to have a fresh start with no transient field values, only Session Folder-fieldvalues available for correct flow execution.&#x20;

{% endhint %}


---

# 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:

```
GET https://docs.wem.io/platform/wemmodeler/flowcharts/navigation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
