图查询结构
| 25 | |
| 26 | @dataclass |
| 27 | class GraphQuery: |
| 28 | """图查询结构""" |
| 29 | query_type: QueryType |
| 30 | source_entities: List[str] |
| 31 | target_entities: List[str] = None |
| 32 | relation_types: List[str] = None |
| 33 | max_depth: int = 2 |
| 34 | max_nodes: int = 50 |
| 35 | constraints: Dict[str, Any] = None |
| 36 | |
| 37 | @dataclass |
| 38 | class GraphPath: |
no outgoing calls
no test coverage detected