issue_tree
    Preparing search index...

    Interface GraphEdge

    One directed, typed edge between two graph nodes. Direction runs from the issue that declares the relationship to the issue it references, after taxonomy inverse-spelling normalization.

    const e: GraphEdge = {
    from: 'octocat/hello#7', to: 'octocat/hello#3',
    kind: 'blocked-by', linkClass: 'gating', source: 'body',
    };
    interface GraphEdge {
        from: string;
        kind: LinkKind;
        linkClass: LinkClass;
        source: EdgeSource;
        to: string;
    }
    Index

    Properties

    from: string

    Source node id.

    kind: LinkKind

    One of the 12 canonical taxonomy kinds.

    linkClass: LinkClass

    The taxonomy class of kind.

    source: EdgeSource

    Where this edge was discovered during graph construction.

    to: string

    Target node id.