| 88 | /// CALL proc() YIELD col WHERE col = 'value' |
| 89 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 90 | pub 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)] |
nothing calls this directly
no outgoing calls
no test coverage detected