issue_tree
    Preparing search index...

    Interface FilterOptions

    Filter options applied to a built graph.

    interface FilterOptions {
        label?: string[];
        milestone?: string;
        repo?: string[];
        scope: Scope;
        state?: StateFilter;
    }
    Index

    Properties

    label?: string[]

    Restrict to issues carrying one of these labels; empty/undefined keeps all.

    milestone?: string

    Restrict to this milestone title; undefined keeps all.

    repo?: string[]

    Restrict to these repos ("owner/repo"); empty/undefined keeps all.

    scope: Scope

    How widely to keep nodes around the metadata-passing set: open (default), connected, or all.

    state?: StateFilter

    Restrict by raw GitHub state; defaults to 'all'.