find_call_chain
Traces the shortest call chain from a starting function to a target function within Unreal Engine codebases using recursive graph traversal.
Instructions
Find the shortest call chain from one function to another using recursive CTE graph traversal.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | Maximum chain depth | |
| to_function | Yes | Target function name | |
| from_function | Yes | Starting function name |