From 55774bf39498e4b39305e55086e163f208552ec8 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 22 Sep 2025 18:24:10 +0800 Subject: [PATCH] Mark get_all_labels method as deprecated in BaseGraphStorage --- lightrag/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lightrag/base.py b/lightrag/base.py index b6266d2e..cc8e3c09 100644 --- a/lightrag/base.py +++ b/lightrag/base.py @@ -629,6 +629,7 @@ class BaseGraphStorage(StorageNameSpace, ABC): edges: List of edges to be deleted, each edge is a (source, target) tuple """ + # TODO: deprecated @abstractmethod async def get_all_labels(self) -> list[str]: """Get all labels in the graph.