(
self, source_node_id: str, target_node_id: str
)
| 140 | raise NotImplementedError |
| 141 | |
| 142 | async def get_edge( |
| 143 | self, source_node_id: str, target_node_id: str |
| 144 | ) -> Union[dict, None]: |
| 145 | raise NotImplementedError |
| 146 | |
| 147 | async def get_edges_batch( |
| 148 | self, edge_pairs: list[tuple[str, str]] |
no outgoing calls
no test coverage detected