Expand description
Cypher executor: PlanOp sequence → ResultSet over a binding table.
Structs§
- Params
- Query parameters. Missing names anywhere in the plan are an error at execution start (the plan is walked before any rows are produced).
Functions§
- execute
- Execute a plan against a view. Row order before OrderBy is deterministic (scan order = dense ids; expand order = expand()’s sorted order).
- execute_
union - Execute a read query that may be a
UNION/UNION ALLchain. Each part is planned and executed against the sameview(so masking applies uniformly), then combined left-to-right:UNIONdedups the accumulated rows,UNION ALLconcatenates. All parts must project the same column names.