Expand description
Logical planning for graph queries
This module implements the logical planning phase of the query pipeline: Parse → Semantic Analysis → Logical Plan → Physical Plan
Logical plans describe WHAT operations to perform, not HOW to perform them.
Structs§
- Logical
Planner - Logical plan builder - converts AST to logical plan
- Projection
Item - Projection item for SELECT/RETURN clauses
- Sort
Item - Sort specification for ORDER BY
Enums§
- Join
Type - Join types for combining multiple patterns
- Logical
Operator - A logical plan operator - describes what operation to perform