Skip to content

v0.3.0 – Graph Intelligence

Choose a tag to compare

@dkraciun dkraciun released this 07 Jun 21:46

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);