Skip to main content

Module exec

Module exec 

Source
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 ALL chain. Each part is planned and executed against the same view (so masking applies uniformly), then combined left-to-right: UNION dedups the accumulated rows, UNION ALL concatenates. All parts must project the same column names.