OBJECT

TestExecutionResults

Test Execution Results Type

link GraphQL Schema definition

1type TestExecutionResults {
2
3# Total amount of issues.
4total: Int
5
6# Index of the first item to return in the page of results (page offset).
7start: Int
8
9# Maximum amount of Test Executions to be returned. The maximum is 100.
10limit: Int
11
12# Test Execution issue results.
13results: [TestExecution]
14
15}