OBJECT
updateIterationStatus
link GraphQL Schema definition
1 Mutation updateIterationStatus { 2 3 # Mutation used to update the status of a Test Run iteration. 4 # 5 # Arguments 6 # testRunId: The id of the Test Run. 7 # iterationRank: The rank of the iteration. 8 # status: the id or name of the status of the iteration. 9 (: String!, : String!, : String!): UpdateIterationStatusResult 10 11 }
link Example
The mutation below updates the status of a Test Run iteration.
mutation {
updateIterationStatus(
testRunId: "5e8489c05f200f3cd45bbaf0",
iterationRank: "0",
status: "PASSED"
) {
warnings
}
}