Get node by its ID, returning only node properties. Args: node_id: The ID of the node to retrieve Returns: A dictionary of node properties if found, None otherwise
(self, node_id: str)
| 496 | |
| 497 | @abstractmethod |
| 498 | async def get_node(self, node_id: str) -> dict[str, str] | None: |
| 499 | """Get node by its ID, returning only node properties. |
| 500 | |
| 501 | Args: |
| 502 | node_id: The ID of the node to retrieve |
| 503 | |
| 504 | Returns: |
| 505 | A dictionary of node properties if found, None otherwise |
| 506 | """ |
| 507 | |
| 508 | @abstractmethod |
| 509 | async def get_edge( |
no outgoing calls
no test coverage detected