Omnigraph Atlas Omnigraph's documentation, bound to its Rust workspace
79 documents

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.