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