(
&self,
collection: &str,
start: &NodeId,
depth: u8,
edge_filter: Option<&EdgeFilter>,
)
| 77 | } |
| 78 | |
| 79 | async fn graph_traverse( |
| 80 | &self, |
| 81 | collection: &str, |
| 82 | start: &NodeId, |
| 83 | depth: u8, |
| 84 | edge_filter: Option<&EdgeFilter>, |
| 85 | ) -> NodeDbResult<SubGraph> { |
| 86 | self.graph_traverse_impl(collection, start, depth, edge_filter) |
| 87 | .await |
| 88 | } |
| 89 | |
| 90 | async fn graph_insert_edge( |
| 91 | &self, |
nothing calls this directly
no test coverage detected