OBJECT

getTest

link GraphQL Schema definition

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

link Example

The query below returns a Test.

{
    getTest {
        issueId
        gherkin
        jira(fields: ["assignee", "reporter"])
    }
}

The query below returns the Test with issue id 12345.

{
    getTest(issueId: "12345") {
        issueId
        testType {
            name
            kind
        }
        steps {
            id
            data
            action
            result
            attachments {
                id
                filename
            }
        }
    }
}