feat(graph): implement query methods — topologicalOrder, hasCycles, findCycles, ancestors, descendants, reachableFrom, and call graph queries (filterByStatus, getRoots, children, duration, lineage)

This commit is contained in:
2026-05-21 21:15:58 +00:00
parent d63ef886d8
commit 750ef2d4b7
4 changed files with 695 additions and 7 deletions

View File

@@ -1 +1,9 @@
export { FlowGraph, type FlowGraphOptions } from "./construction.js";
export { FlowGraph, type FlowGraphOptions } from "./construction.js";
export {
topologicalOrder,
hasCycles,
findCycles,
ancestors,
descendants,
reachableFrom,
} from "./queries.js";