| | |
| | | Section string `json:"section"` |
| | | Tags []string `json:"tags"` |
| | | Entities []string `json:"entities"` |
| | | Aliases []string `json:"aliases"` |
| | | Status string `json:"status"` |
| | | Wikilinks []string `json:"wikilinks"` |
| | | Content string `json:"content"` |
| | | Size int64 `json:"size"` |
| | | Mtime int64 `json:"mtime"` |
| | | ContentHash string `json:"content_hash"` |
| | | } |
| | | |
| | | // Edge 图边(实体关系) |
| | |
| | | ToNode int64 `json:"to_node"` // 对于 tag/entity 边,ToNode 可以是虚拟节点 ID |
| | | Relation string `json:"relation"` // "tag" | "entity" | "wikilink" |
| | | Label string `json:"label"` // 具体值 |
| | | Provenance string `json:"provenance"` |
| | | } |
| | | |
| | | // Graph 知识图谱 |