issue_tree
    Preparing search index...

    Interface GraphNode

    One node of the dependency graph: an issue or a pull request.

    const n: GraphNode = {
    id: 'octocat/hello#7', kind: 'issue', repo: 'octocat/hello', number: 7,
    title: 'Crash on save', state: 'OPEN', status: 'open',
    url: 'https://github.com/octocat/hello/issues/7',
    labels: ['bug'], milestone: 'v1', assignees: ['octocat'],
    };
    interface GraphNode {
        assignees: string[];
        id: string;
        kind: NodeKind;
        labels: string[];
        milestone: string | null;
        number: number;
        repo: string;
        state: "OPEN" | "CLOSED";
        status: NodeStatus;
        title: string;
        url: string;
    }
    Index

    Properties

    assignees: string[]

    Assignee logins; always empty for kind: 'pr'.

    id: string

    Globally-unique id, "owner/repo#number".

    kind: NodeKind

    Whether this node is an issue or a pull request.

    labels: string[]

    Label names; always empty for kind: 'pr'.

    milestone: string | null

    Milestone title, or null; always null for kind: 'pr'.

    number: number

    The issue or PR number within its repository.

    repo: string

    The node's repository, "owner/repo".

    state: "OPEN" | "CLOSED"

    Raw GitHub state.

    status: NodeStatus

    Computed status (see computeStatus).

    title: string

    The issue or PR title as returned by GitHub.

    url: string

    The canonical GitHub URL for this issue or PR.