A typed-edge dependency graph. This is the in-memory representation, the --format json output, and the payload the HTML output embeds.
--format json
const g: Graph = emptyGraph('issue-tree-cache.json', { scope: 'open' }); g.nodes.length // => 0 Copy
const g: Graph = emptyGraph('issue-tree-cache.json', { scope: 'open' }); g.nodes.length // => 0
Every directed, typed edge between two nodes.
ISO timestamp the graph was built at.
Per-graph metadata: provenance, filters applied, and node/edge counts.
Every node in the graph (issues and pull requests).
A typed-edge dependency graph. This is the in-memory representation, the
--format jsonoutput, and the payload the HTML output embeds.Example