OBJECT

getTestPlan

link GraphQL Schema definition

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

link Example

The Query below returns a Test Plan.

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

The Query below returns the Test Plan with issue id 12345

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