图关系数据结构
| 21 | |
| 22 | @dataclass |
| 23 | class GraphRelation: |
| 24 | """图关系数据结构""" |
| 25 | start_node_id: str |
| 26 | end_node_id: str |
| 27 | relation_type: str |
| 28 | properties: Dict[str, Any] |
| 29 | |
| 30 | class GraphDataPreparationModule: |
| 31 | """图数据库数据准备模块 - 从Neo4j读取数据并转换为文档""" |
nothing calls this directly
no outgoing calls
no test coverage detected