tyneq / QueryPlanTraversalDirection
Type Alias: QueryPlanTraversalDirection
QueryPlanTraversalDirection =
"source-to-terminal"|"terminal-to-source"
Defined in: src/types/queryplan.ts:104
Traversal direction for QueryPlanWalker.
"source-to-terminal"- visits from the source node up to the terminal (bottom-up).fromis visited beforewhere,wherebeforeselect. This is the default."terminal-to-source"- visits from the terminal node down to the source (top-down).selectis visited beforewhere,wherebeforefrom.