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