Get current graph name from session
(&self)
| 171 | |
| 172 | /// Get current graph name from session |
| 173 | pub fn get_current_graph_name(&self) -> Option<String> { |
| 174 | let session_arc = self.get_session()?; |
| 175 | let user_session = session_arc.read().ok()?; |
| 176 | user_session.current_graph.clone() |
| 177 | } |
| 178 | |
| 179 | /// Get current schema from session |
| 180 | pub fn get_current_schema(&self) -> Option<String> { |
no test coverage detected