Update attributes of an existing node. Args: id: Node identifier to be updated. fields: Dictionary of fields to update. user_name: given user_name
(self, id: str, fields: dict[str, Any], user_name: str | None = None)
| 43 | |
| 44 | @abstractmethod |
| 45 | def update_node(self, id: str, fields: dict[str, Any], user_name: str | None = None) -> None: |
| 46 | """ |
| 47 | Update attributes of an existing node. |
| 48 | Args: |
| 49 | id: Node identifier to be updated. |
| 50 | fields: Dictionary of fields to update. |
| 51 | user_name: given user_name |
| 52 | """ |
| 53 | |
| 54 | @abstractmethod |
| 55 | def delete_node(self, id: str) -> None: |
no outgoing calls
no test coverage detected