OBJECT

getTestExecution

link GraphQL Schema definition

1Query getTestExecution {
2
3# Returns a Test Execution by issue id.
4#
5#
6# Arguments
7# issueId: the id of the Test Execution issue to be returned.
8getTestExecution(issueId: String): TestExecution
9
10}

link Example

The Query below returns a Test Execution.

{
    getTestExecution {
        issueId
        projectId
        jira(fields: ["assignee", "reporter"])
    }
}

The Query below returns the Test Execution with issue id 12345.

{
    getTestExecution(issueId: "12345") {
        issueId
        tests(limit: 100) {
            total
            start
            limit
            results {
                issueId
                testType {
                    name
                }
            }
        }
    }
}