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

Class BasicQuery

graphlite/src/ast/ast.rs:184–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182/// Basic GQL Query structure: MATCH [WHERE] RETURN [ORDER BY] [LIMIT]
183#[derive(Debug, Clone, Serialize, Deserialize)]
184pub 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected