OBJECT
getExpandedTest
link GraphQL Schema definition
1 Query getExpandedTest { 2 3 # Returns a test (with the call test steps expanded) by issue id. 4 # 5 # Arguments 6 # issueId: the id of the test issue to be returned. 7 String): ExpandedTest ( : 8 9 }
link Example
The query below returns the test with issue id 12345.
{ getExpandedTest(issueId: "12345") { issueId testType { name kind } steps { parentTestIssueId calledTestIssueId id data action result attachments { id filename } } warnings } }