(
&self,
collection: &str,
from: &NodeId,
to: &NodeId,
edge_type: &str,
properties: Option<Document>,
)
| 90 | } |
| 91 | |
| 92 | async fn graph_insert_edge( |
| 93 | &self, |
| 94 | collection: &str, |
| 95 | from: &NodeId, |
| 96 | to: &NodeId, |
| 97 | edge_type: &str, |
| 98 | properties: Option<Document>, |
| 99 | ) -> NodeDbResult<EdgeId> { |
| 100 | self.graph_insert_edge_impl(collection, from, to, edge_type, properties) |
| 101 | .await |
| 102 | } |
| 103 | |
| 104 | async fn graph_delete_edge(&self, collection: &str, edge_id: &EdgeId) -> NodeDbResult<()> { |
| 105 | self.graph_delete_edge_impl(collection, edge_id).await |
nothing calls this directly
no test coverage detected