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

Class Edge

graphlite/src/ast/ast.rs:337–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335/// Edge pattern: -[:label {properties}]-
336#[derive(Debug, Clone, Serialize, Deserialize)]
337pub struct Edge {
338 pub identifier: Option<String>,
339 pub labels: Vec<String>,
340 pub properties: Option<PropertyMap>,
341 pub direction: EdgeDirection,
342 pub quantifier: Option<PathQuantifier>,
343 pub location: Location,
344}
345
346/// Edge direction
347#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]

Callers 3

create_test_edgeFunction · 0.50
with_entityMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected