MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / Edge

Class Edge

graphlite/src/storage/types.rs:128–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126/// Graph edge with id, from/to nodes, label, and properties
127#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
128pub struct Edge {
129 pub id: String,
130 pub from_node: String,
131 pub to_node: String,
132 pub label: String,
133 pub properties: HashMap<String, Value>,
134}
135
136impl Edge {
137 /// Create a new edge

Callers 1

fromMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected