OBJECT

TestRunIterationStepResults

Test Run iteration step results results type

link GraphQL Schema definition

1type TestRunIterationStepResults {
2
3# Total amount of steps.
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 step results to be returned. The maximum is 100.
10limit: Int
11
12# Step results.
13results: [TestRunIterationStepResult]
14
15}