Skip to content

tyneq


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). from is visited before where, where before select. This is the default.
  • "terminal-to-source" - visits from the terminal node down to the source (top-down). select is visited before where, where before from.