Example
In the example below, theage field has not been provided when inserting the item so the default value of 0 will be used.
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.
Setting default schema.
N::NodeType {
field1: String DEFAULT "default",
field2: U32 DEFAULT 0
}
age field has not been provided when inserting the item so the default value of 0 will be used.
QUERY createUser(name: String) =>
user <- AddN<User>({name})
RETURN user
Was this page helpful?