Expand description
Recursive join operator — variable-length path traversal via BFS.
Scans relationship table to build an adjacency map, then BFS-expands from
each source node for min_hops..=max_hops levels. Joins reachable
destination nodes with the dest node table to produce combined rows.
Structs§
- Recursive
Join Config - Configuration for a recursive join (avoids too-many-arguments).
- Recursive
Join Op
Functions§
- build_
adjacency_ map - Build adjacency map: src -> [dst] from a relationship table.