(self, node_id: str, node_data: dict[str, str])
| 272 | return None |
| 273 | |
| 274 | async def upsert_node(self, node_id: str, node_data: dict[str, str]): |
| 275 | self._graph.add_node(node_id, **node_data) |
| 276 | |
| 277 | async def upsert_edge( |
| 278 | self, source_node_id: str, target_node_id: str, edge_data: dict[str, str] |
nothing calls this directly
no outgoing calls
no test coverage detected