Check if a node exists in the graph. Args: node_id: The ID of the node to check Returns: True if the node exists, False otherwise
(self, node_id: str)
| 450 | |
| 451 | @abstractmethod |
| 452 | async def has_node(self, node_id: str) -> bool: |
| 453 | """Check if a node exists in the graph. |
| 454 | |
| 455 | Args: |
| 456 | node_id: The ID of the node to check |
| 457 | |
| 458 | Returns: |
| 459 | True if the node exists, False otherwise |
| 460 | """ |
| 461 | |
| 462 | @abstractmethod |
| 463 | async def has_edge(self, source_node_id: str, target_node_id: str) -> bool: |
no outgoing calls
no test coverage detected