> ## Documentation Index
> Fetch the complete documentation index at: https://docs.graphify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# graphify query

> Retrieve a compact neighborhood of graph evidence for a question.

```bash theme={null}
graphify query "<question>" [--dfs] [--context <value>] [--budget <tokens>] [--graph <path>]
```

| Argument    | Default                   | Meaning                                                            |
| ----------- | ------------------------- | ------------------------------------------------------------------ |
| Question    | Required                  | Natural-language question or keywords.                             |
| `--dfs`     | Off                       | Use depth-first traversal instead of breadth-first.                |
| `--context` | No explicit filter        | Filter edge context, such as `call`; repeat for multiple contexts. |
| `--budget`  | `2000`                    | Approximate output token budget.                                   |
| `--graph`   | `graphify-out/graph.json` | JSON graph to query.                                               |

```bash theme={null}
graphify query "request validation" --budget 1500
graphify query "database access" --dfs --context call
graphify query "entry points" --graph ./shared/graph.json
```

The response is graph context, not an independently verified natural-language answer. Review returned nodes, relations, provenance, and source references. Use [explain](/reference/explain) or [path](/reference/path) to narrow the result.

## Empty results

Check the graph path and refresh changed source. Try a concrete function, class, or subsystem name. The graph can only return relationships present in the analyzed inputs.

<div aria-hidden="true" data-graphify-site-styles="true" className="hidden [body:has(&)_.chat-assistant-floating-input::before]:!bg-transparent [body:has(&)_#content-container>span[style*=features-bg]]:!bg-cover [body:has(&)_#content-container>span[style*=features-bg]]:!bg-bottom [body:has(&)_#footer_a[href*='linkedin.com']_svg]:!bg-[#0a66c2] [body:has(&)_#footer_a[href*='discord.gg']_svg]:!bg-[#5865f2] [body:has(&)_#footer_a[href*='github.com']_svg]:!bg-[#181717] [body:has(&)_#footer_a[href*='x.com']_svg]:!bg-[#000000]" />

<div role="navigation" aria-label="Documentation pages" className="not-prose mt-12 grid gap-4 sm:grid-cols-2">
  <a href="/reference/overview" rel="prev" aria-label="Previous: CLI reference" className="group flex min-h-[112px] flex-col justify-center gap-3 rounded-xl border border-[#c7dbd0] !border-b-[#c7dbd0] bg-[#ffffff] px-6 py-5 text-[#062314] no-underline transition-colors hover:border-[#94b6a2] hover:!border-b-[#94b6a2] hover:bg-[#edf6f0] focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-4 focus-visible:outline-[#4dea9c] items-start text-left"><span className="flex items-center gap-2 text-[11px] font-medium uppercase tracking-[0.08em] text-[#586b60]"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.8" aria-hidden="true"><path d="M15 5l-7 7 7 7" /></svg>Previous</span><span className="text-[15px] font-semibold leading-6">CLI reference</span></a>
  <a href="/reference/path" rel="next" aria-label="Next: graphify path" className="group flex min-h-[112px] flex-col justify-center gap-3 rounded-xl border border-[#c7dbd0] !border-b-[#c7dbd0] bg-[#ffffff] px-6 py-5 text-[#062314] no-underline transition-colors hover:border-[#94b6a2] hover:!border-b-[#94b6a2] hover:bg-[#edf6f0] focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-4 focus-visible:outline-[#4dea9c] items-end text-right sm:col-start-2"><span className="flex items-center gap-2 text-[11px] font-medium uppercase tracking-[0.08em] text-[#586b60]">Next<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.8" aria-hidden="true"><path d="M9 5l7 7-7 7" /></svg></span><span className="text-[15px] font-semibold leading-6">graphify path</span></a>
</div>
