async fn get_call_tree(
data: Data<Mutex<CodePropertyGraph>>,
query: Query<CallTreeQuery>,
) -> HttpResponseExpand description
Return a call tree (or forest) starting from the requested root.
root = "*"returns a forest of all top‑level functions (those with no incoming calls).- Otherwise a single tree is built from the named function.