# Quickly Traverse Five Levels

Salesforce allows SOQL queries and merge fields to traverse up to five relationship levels. Understanding these levels helps leverage existing objects efficiently. Here’s a guide to navigating five levels:

* **Starting Point**: Identify the base object (e.g., Task, Opportunity, Case).
* **Relationship Levels**: Each step represents a related object or field traversed.

### Examples

#### Example 1: Opportunity to User (via Account)

Merge Field:

```
{!Opportunity.Account.Parent.Owner.Profile.Name}
```

**Levels Breakdown**:

1. Opportunity
2. Account (related to Opportunity)
3. Parent (parent Account of Account)
4. Owner (User who owns the parent Account)
5. Profile.Name (Profile name of the User)

{% hint style="info" %}

#### Tips for Testing

* Use the Developer Console or merge fields in templates to validate your queries.
* Reference <https://help.salesforce.com/s/articleView?id=release-notes.rn\\_api\\_soql\\_5level.htm\\&release=244\\&type=5> for details on relationship traversal.
  {% endhint %}


---

# Agent Instructions: 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://help.sdocs.com/sdocs/template-architecture/inserting-merge-fields/additional-resources/quickly-traverse-five-levels.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.
