feat: 知识图谱测试api

This commit is contained in:
hhs
2026-04-05 15:03:56 +08:00
parent a7675458a1
commit c500d75b12
11 changed files with 843 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
package models
type Node struct {
ID string `json:"id"`
Label string `json:"label"`
Type string `json:"type,omitempty"`
Properties map[string]interface{} `json:"properties,omitempty"`
X float64 `json:"x,omitempty"`
Y float64 `json:"y,omitempty"`
Style map[string]interface{} `json:"style,omitempty"`
}
type Edge struct {
ID string `json:"id"`
Source string `json:"source"`
Target string `json:"target"`
Label string `json:"label,omitempty"`
Type string `json:"type,omitempty"`
Properties map[string]interface{} `json:"properties,omitempty"`
Style map[string]interface{} `json:"style,omitempty"`
}
type GraphData struct {
Nodes []Node `json:"nodes"`
Edges []Edge `json:"edges"`
}