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