feat: Added support for TuGraph graph database (#1451)

Co-authored-by: aries_ckt <916701291@qq.com>
This commit is contained in:
lipengfei
2024-04-26 09:48:40 +08:00
committed by GitHub
parent 98ebfdcd7a
commit a5666b3120
30 changed files with 379 additions and 38 deletions

View File

@@ -216,3 +216,8 @@ class BaseConnector(ABC):
def is_normal_type(cls) -> bool:
"""Return whether the connector is a normal type."""
return True
@classmethod
def is_graph_type(cls) -> bool:
"""Return whether the connector is a graph database connector."""
return False