OBJECT

ExpandedTestResults

Expanded tests results type

link GraphQL Schema definition

1type ExpandedTestResults {
2
3# Total amount of issues.
4total: Int
5
6# The index of the first item to return in the page of results (page offset).
7start: Int
8
9# The maximum amount of Tests to be returned. The maximum is 100.
10limit: Int
11
12# Expanded test issue results.
13results: [ExpandedTest]
14
15}