issue_tree
    Preparing search index...

    Interface Graph

    A typed-edge dependency graph. This is the in-memory representation, the --format json output, and the payload the HTML output embeds.

    const g: Graph = emptyGraph('issue-tree-cache.json', { scope: 'open' });
    g.nodes.length // => 0
    interface Graph {
        edges: GraphEdge[];
        generatedAt: string;
        meta: GraphMeta;
        nodes: GraphNode[];
    }
    Index

    Properties

    edges: GraphEdge[]

    Every directed, typed edge between two nodes.

    generatedAt: string

    ISO timestamp the graph was built at.

    meta: GraphMeta

    Per-graph metadata: provenance, filters applied, and node/edge counts.

    nodes: GraphNode[]

    Every node in the graph (issues and pull requests).