| 126 | /// Graph edge with id, from/to nodes, label, and properties |
| 127 | #[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)] |
| 128 | pub 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 | |
| 136 | impl Edge { |
| 137 | /// Create a new edge |