OBJECT
TestRunIteration
Test Run iteration type
link GraphQL Schema definition
1 type TestRunIteration { 2 3 # Rank of the iteration. 4 : String 5 6 # Parameters of the iteration. 7 : [TestRunParameter] 8 9 # Status of the iteration. 10 : 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). 17 (: Int!, : Int): TestRunIterationStepResults 18 19 }