Asking a question
--depth (default 3) is how far it walks, and --token-budget (default 2000) is how much it keeps.
The gotcha. A thin answer is usually a retrieval problem, not a synthesis problem. Widen --depth before you rewrite the question.
Checking what it actually found
--raw skips synthesis and prints the retrieved subgraph. If the facts you expected are not in there, no amount of rephrasing was going to produce a good answer, and you have just found out in one step instead of five.
Next rung. --raw is often the better output even when the retrieval is good. Reasoning over the facts yourself beats trusting a summary of them, particularly when you are about to act on the answer.
Walking it by hand
get-nodeshows one node in full: label, type, source, summary and edges. Start here when you want to know what base actually holds about something.neighborslists the neighbourhood as edge lines, expanded as many hops as you ask for. This is the map around a thing.pathfinds the shortest route between two nodes, which answers “how are these two related at all” rather than “what is near this”.
neighbors --depth 3 on a well-connected node returns a lot. Start at 1 and widen.
Seeing the shape of the whole thing
Next
Ingesting documents
Getting more into the graph so there is more to query.
Graph and memory reference
Every flag on every
base graph verb.