interface SearchEpics {
    excludeDone?: boolean;
    maxResults?: number;
    projectKey?: string;
    query?: string;
}

Properties

excludeDone?: boolean

Flag that will exclude done epics from the results.

maxResults?: number

The maximum number of returned results.

projectKey?: string

Key of a project by which epics will be prioritised (on the top) in the results.

query?: string

Text query by which the results should be filtered.