OBJECT

TestRunIteration

Test Run iteration type

link GraphQL Schema definition

1type TestRunIteration {
2
3# Rank of the iteration.
4rank: String
5
6# Parameters of the iteration.
7parameters: [TestRunParameter]
8
9# Status of the iteration.
10status: StepStatus
11
12# Step results of the iteration.
13#
14# Arguments
15# limit: the maximum amount of step results to be returned. The maximum is 100.
16# start: the index of the first item to return in the page of results (page offset).
17stepResults(limit: Int!, start: Int): TestRunIterationStepResults
18
19}