Find callers of a symbol
find_callersFind every function and method that calls a specific symbol, using the TypeScript type checker to resolve references accurately across files.
Instructions
Find every function/method that calls a given symbol, resolved via the real TypeScript type checker (handles cross-file calls correctly, not just same-file text matches). Use find_definition first to get the exact symbol id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol_id | Yes | Exact symbol id from find_definition, e.g. 'userService.ts#createUser#10' | |
| graph_path | No | Path to a previously saved graph (default: .codegraph/graph.json) |