pub fn related_nodes(
conn: &Connection,
start_id: &str,
depth: usize,
) -> Vec<String>Expand description
BFS traversal from start_id via SQL recursive CTE.
Returns all reachable node IDs (excluding start), capped at 500. Follows edges in both directions.