(self, qualified_name: str)
| 324 | # --- Read operations --- |
| 325 | |
| 326 | def get_node(self, qualified_name: str) -> Optional[GraphNode]: |
| 327 | row = self._conn.execute( |
| 328 | "SELECT * FROM nodes WHERE qualified_name = ?", (qualified_name,) |
| 329 | ).fetchone() |
| 330 | return self._row_to_node(row) if row else None |
| 331 | |
| 332 | def get_nodes_by_file(self, file_path: str) -> list[GraphNode]: |
| 333 | rows = self._conn.execute( |