OBJECT
getTestPlan
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
}
}
}
}
}