Quickstart: zero to a query
The shortest path from a fresh install to a graph you can query — schema, init, load, query, branch — entirely on a local file-backed graph, no server.
1. Write a schema
A schema (.pg) declares your node and edge types. Save this as schema.pg:
node Person {
name: String
title: String?
}
See the schema language for types, constraints, and edges.