HelixDB Docs home page
Search HelixDB Docs
⌘K
Ask AI
GitHub
Discord
Support
Search...
Navigation
Errors
E601
Documentation
Features
Guides
Cloud Service
Blogs
Releases
Getting Started
Introduction
Installation
Quick Start
HelixCLI
What is HelixDB?
What is a Graph Database?
SDKs
Python SDK
Rust SDK
TypeScript SDK
Go SDK
Ecosystem
Overview
Helix Types
Schema Definitions
Query Structure
Configurations
HelixQL
What is HQL?
Create Operations
Select Operations
Vector Search
Embedding Vectors
Traversals
Updating Items
Delete Operation
Properties
Aggregation Steps
Shortest Path
Errors
E101
E102
E103
E105
E202
E204
E205
E207
E301
E302
E304
E305
E401
E501
E601
E602
E604
E611
E612
E621
E622
E631
E632
E633
E641
E642
E643
E644
E645
E651
E652
E653
On this page
Invalid Traversal
Erroneous Code Example
Solution
Errors
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.
queries.hx
Copy
Ask AI
Query
getUser
()
=>
user
<-
N
()
Solution
Ensure each step in the traversal is valid.
queries.hx
Copy
Ask AI
Query
getUser
()
=>
user
<-
N
<
User
>
RETURN
user
Was this page helpful?
Yes
No
E501
E602
Assistant
Responses are generated using AI and may contain mistakes.