Unknown Node Type
Erroneous Code Example
This error occurs when you try to reference a node type that is not defined in your schema.Solution
Define the node typeUser in your schema.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 CLI v2 is now live! See Getting Started for details.
QUERY getUser(id: ID) =>
user <- N<User>(id)
RETURN user
User in your schema.
N::User {
// fields
}
Was this page helpful?