27 lines
930 B
Go
27 lines
930 B
Go
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"`
|
|
}
|