OBJECT

removeDefectsFromTestRun

link GraphQL Schema definition

1Mutation removeDefectsFromTestRun {
2
3# Mutation used to remove defects from a Test Run.
4#
5# Arguments
6# id: the id of the Test Run.
7# issues: the ids or keys of the defects to remove from the Test Run.
8removeDefectsFromTestRun(id: String!, issues: [String]!): String
9
10}

link Example

The mutation below removes 2 defects from the Test Run.

mutation {
    removeDefectsFromTestRun( id: "5acc7ab0a3fe1b6fcdc3c737", issues: ["XRAY-1234", "12345"])
}