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

Class Node

graphlite/src/ast/ast.rs:328–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326/// Node pattern: (identifier? :label? {properties}?)
327#[derive(Debug, Clone, Serialize, Deserialize)]
328pub 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)]

Calls

no outgoing calls

Tested by

no test coverage detected