OBJECT

removeTestsFromTestExecution

link GraphQL Schema definition

1Mutation removeTestsFromTestExecution {
2
3# Mutation used to remove Tests from the Test Execution.
4#
5# Arguments
6# issueId: issue id of the Test Execution.
7# testIssueIds: the ids of the Tests.
8removeTestsFromTestExecution(issueId: String!, testIssueIds: [String]!): String
9
10}

link Example

The mutation below will remove the Tests with issue id "54321" and "67890" from the Test Execution "12345".

mutation {
    removeTestsFromTestExecution(issueId: "12345", testIssueIds: ["54321", "67890"])
}