List all available graphs
(&self)
| 354 | |
| 355 | /// List all available graphs |
| 356 | pub fn list_graphs(&self) -> Result<Vec<String>, StorageError> { |
| 357 | self.get_graph_names() |
| 358 | } |
| 359 | |
| 360 | /// Get a mutable reference to a graph in the cache |
| 361 | pub fn get_graph_mut(&self, name: &str) -> Result<Option<GraphCache>, StorageError> { |
no test coverage detected