OBJECT

getCoverableIssues

link GraphQL Schema definition

1Query getCoverableIssues {
2
3# Returns multiple coverable issues by jql or issue ids.
4#
5# Arguments
6# jql: the jql that defines the search.
7# issueIds: the ids of the Coverable Issues to be returned.
8# limit: the maximum amount of Tests to be returned. The maximum is 100.
9# start: the index of the first item to return in the page of results (page offset).
10getCoverableIssues(jql: String, issueIds: [String], limit: Int!, start: Int): CoverableIssueResults
11
12}

link Example

The query below returns 10 coverable issues that match the provided jql.

{
    getCoverableIssues(limit: 10) {
        total
        start
        limit
        results {
            issueId
            jira(fields: ["assignee", "reporter"])
            status {
                name
                description
                color
            }
        }
    }
}