> ## Documentation Index
> Fetch the complete documentation index at: https://helix-digitalocean.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# E601

# Invalid Traversal

**Note:** This error is not currently emitted by the compiler.

## Erroneous Code Example

This error occurs when you attempt a malformed traversal.

<CodeGroup>
  ```rust queries.hx theme={null}
  Query getUser() =>
      user <- N() 
  ```
</CodeGroup>

## Solution

Ensure each step in the traversal is valid.

<CodeGroup>
  ```rust queries.hx theme={null}
  Query getUser() =>
      user <- N<User>
      RETURN user
  ```
</CodeGroup>
