get_call_graph
Analyze control flow by generating a bidirectional call graph showing what calls a symbol and what it calls. Use to understand function dependencies and relationships in code.
Instructions
Build a bidirectional call graph centered on a symbol (who calls it + what it calls). Use to understand control flow through a function.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol_id | No | Symbol ID to center the graph on | |
| fqn | No | Fully qualified name to center the graph on | |
| depth | No | Traversal depth on each side (default 2) |