OBJECT

getTestRunById

link GraphQL Schema definition

1Query getTestRunById {
2
3# Returns a Test Run by id.
4#
5# Arguments
6# id: the id of the Test Run.
7getTestRunById(id: String): TestRun
8
9}

link Example

The Query below returns a Test Run.

{
    getTestRunById( id: "5acc7ab0a3fe1b6fcdc3c737") {
        id
        status {
            name
            color
            description
        }
        steps {
            action
            data
            result
            attachments {
                id
                filename
            }
            status {
                name
                color
            }
        }
    }
}