| 326 | /// Node pattern: (identifier? :label? {properties}?) |
| 327 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 328 | pub struct Node { |
| 329 | pub identifier: Option<String>, |
| 330 | pub labels: Vec<String>, |
| 331 | pub properties: Option<PropertyMap>, |
| 332 | pub location: Location, |
| 333 | } |
| 334 | |
| 335 | /// Edge pattern: -[:label {properties}]- |
| 336 | #[derive(Debug, Clone, Serialize, Deserialize)] |
no outgoing calls
no test coverage detected