OBJECT

updateTestRunComment

link GraphQL Schema definition

1Mutation updateTestRunComment {
2
3# Mutation used to update the comment of a Test Run.
4#
5# Arguments
6# id: the id of the Test Run.
7# comment: the comment of the Test Run.
8updateTestRunComment(id: String!, comment: String!): String
9
10}

link Example

The mutation below updates the comment of a Test Run.

mutation {
    updateTestRunComment( id: "5acc7ab0a3fe1b6fcdc3c737", comment: "Everything is OK.")
}