gograph_callees
Find all functions called from a specified function to trace downstream execution flow and dependencies. Returns callee symbols with file locations.
Instructions
Find all functions and methods called from inside the specified function (one-hop fan-out). Requires .gograph/graph.json — run gograph build . first. Read-only; no side effects. WHEN TO USE: When understanding what a function depends on — its downstream execution flow, external service calls, and library usage. NOT TO USE: For upstream callers (use gograph_callers); for transitive package dependency trees (use gograph_deps). RETURNS: List of callee symbols with package paths, file locations, and call-site line numbers; empty when the function makes no calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| function | Yes | The name of the calling function to inspect callees for (supports short name 'Serve', dot-notation 'graph.Graph.Build', or fully-qualified ID) |