OBJECT

getTestRun

link GraphQL Schema definition

1Query getTestRun {
2
3# Returns a Test Run by Test issue id and Test Execution issue id.
4#
5# Arguments
6# testIssueId: the issue id of the Test of the Test Run.
7# testExecIssueId: the issue id of the Test Execution of the Test Run.
8getTestRun(testIssueId: String, testExecIssueId: String): TestRun
9
10}

link Example

The Query below returns a Test Run

{
    getTestRun( testIssueId: "11165", testExecIssueId: "11164") {
        id
        status {
            name
            color
            description
        }
        gherkin
        examples {
            id
            status {
                name
                color
                description
            }
        }
    }
}