OBJECT

getTestSet

link GraphQL Schema definition

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

link Example

The query below returns a test set

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

The query below returns the test set with issue id 12345

{
    getTestSet(issueId: "12345") {
        issueId
        tests(limit: 100) {
            results {
                issueId
                testType {
                    name
                }
            }
        }
    }
}