pub struct NavigateStep {
pub depth: Option<i64>,
pub pix_name: String,
pub corpus_name: String,
pub query_expr: String,
pub trail_enabled: bool,
pub output_name: String,
pub seed: String,
pub budget: Option<i64>,
pub where_expr: String,
pub loc: Loc,
}Fields§
§depth: Option<i64>v2.83.0 — per-navigation depth: override (README’s pix family
writes it inline). None ⇒ the navigator’s bounded-rationality
default. Threaded into NavConfig.d_max at dispatch, so this field
DECIDES something — adding one consumed by nothing would be the v2.67.0
defect this cycle exists to end.
pix_name: String§corpus_name: String§query_expr: String§trail_enabled: bool§output_name: String§seed: Stringv2.13.0 — for MDN corpus-graph navigation: the seed document from:
to start the ε-informative traversal. Empty for PIX tree navigation.
budget: Option<i64>v2.13.0 — for MDN: the budget: (max documents). None = default.
where_expr: Stringv2.17.0 (Q2) — optional column-scope filter (where:) for a
corpus from axonstore. A raw filter expr (same shape as retrieve … where) pushed to the SELECT sourcing the corpus rows, so an adopter
multiplexing sub-tenants in one axon-tenant via a column can scope the
MDN graph to a single sub-tenant. Empty = no column filter (RLS-only).
loc: Loc