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

Class CallStatement

graphlite/src/ast/ast.rs:90–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88/// CALL proc() YIELD col WHERE col = 'value'
89#[derive(Debug, Clone, Serialize, Deserialize)]
90pub struct CallStatement {
91 pub procedure_name: String,
92 pub arguments: Vec<Expression>,
93 pub yield_clause: Option<YieldClause>,
94 pub where_clause: Option<WhereClause>, // GraphLite extension (not in ISO GQL call-statement)
95 pub location: Location,
96}
97
98/// YIELD clause for CALL statements
99#[derive(Debug, Clone, Serialize, Deserialize)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected