| 182 | /// Basic GQL Query structure: MATCH [WHERE] RETURN [ORDER BY] [LIMIT] |
| 183 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 184 | pub struct BasicQuery { |
| 185 | pub match_clause: MatchClause, |
| 186 | pub where_clause: Option<WhereClause>, |
| 187 | pub return_clause: ReturnClause, |
| 188 | pub group_clause: Option<GroupClause>, |
| 189 | pub having_clause: Option<HavingClause>, |
| 190 | pub order_clause: Option<OrderClause>, |
| 191 | pub limit_clause: Option<LimitClause>, |
| 192 | pub location: Location, |
| 193 | } |
| 194 | |
| 195 | /// Standalone RETURN Query structure: RETURN [DISTINCT|ALL] items [GROUP BY] |
| 196 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected