v0.3.0 – Graph Intelligence
Graph Intelligence
Axis now includes graph-based traceability APIs.
Added
- Ancestor traversal
- Descendant traversal
- Root node discovery
- Leaf node discovery
- Path finding between EPCs
- Multi-parent relationship support
- TraceGraph graph navigation APIs
Testing
- 36 test files
- 100 automated tests
- 100% passing
Example
const graph = document.buildTraceGraph();
graph.ancestors(itemEpc);
graph.descendants(palletEpc);
graph.path(palletEpc, itemEpc);