pub trait GraphTraverser: Send + Sync {
// Required method
fn traverse<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
start_id: &'life1 str,
max_hops: usize,
min_weight: f64,
edge_types: Option<&'life2 [String]>,
) -> Pin<Box<dyn Future<Output = Result<Vec<GraphNode>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}