Navigate the tree
Parameters
Every node in a response carries
id, type, parentId, data, and createdAt.
up: ancestor chain
Leaf to root, starting with the node itself.
down: subtree
Depth-first, the node itself first at depth: 0, then every descendant with its depth.
_tip suggesting a narrower direction or a filtered nodes read.
lateral: siblings
Nodes with the same parent, excluding the queried node. A root node has no siblings; the response says so in _meta._tip rather than returning an empty list silently.
context: everything around one node
ancestorsincludes the node itself as its first entry, then walks up to the root.childrenis the entire subtree below the node, not just direct children. Each entry has adepth(direct children aredepth: 1).
Errors
400 { "error": "direction must be one of: up, down, lateral, context" }404 { "error": "Node 'job-999' not found", "_meta": { "_tip": "Never guess node IDs. ..." } }

