Get a graph with lazy loading (now handled by StorageManager)
(&self, graph_name: &str)
| 452 | |
| 453 | /// Get a graph with lazy loading (now handled by StorageManager) |
| 454 | fn lazy_load_graph(&self, graph_name: &str) -> Result<Option<GraphCache>, ExecutionError> { |
| 455 | log::debug!("Getting graph '{}' with lazy loading", graph_name); |
| 456 | // StorageManager handles lazy loading internally |
| 457 | self.storage.get_graph(graph_name).map_err(|e| { |
| 458 | ExecutionError::StorageError(format!( |
| 459 | "Failed to get/load graph '{}': {}", |
| 460 | graph_name, e |
| 461 | )) |
| 462 | }) |
| 463 | } |
| 464 | |
| 465 | /// Resolve a graph reference to an actual graph instance |
| 466 | /// |
no test coverage detected