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

Function parse_core_query

graphlite/src/ast/parser.rs:358–360  ·  view source on GitHub ↗

Parse core query logic (set operations, basic queries) without modifiers This is the clean separation: core query parsing vs modifier parsing

(tokens: &[Token])

Source from the content-addressed store, hash-verified

356/// Parse core query logic (set operations, basic queries) without modifiers
357/// This is the clean separation: core query parsing vs modifier parsing
358fn parse_core_query(tokens: &[Token]) -> IResult<&[Token], Query> {
359 parse_union_except(tokens)
360}
361
362/// Apply ORDER BY and LIMIT modifiers to any query type
363/// This is the unified approach - one function handles all query variants

Callers 1

parse_set_operationFunction · 0.85

Calls 1

parse_union_exceptFunction · 0.85

Tested by

no test coverage detected