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[]
    generatedAt: string

    ISO timestamp the graph was built at.

    meta: GraphMeta
    nodes: GraphNode[]