OBJECT

removeTestsFromTestSet

link GraphQL Schema definition

1Mutation removeTestsFromTestSet {
2
3# Mutation used to remove Tests from the Test Set.
4#
5# Arguments
6# issueId: the issue id of the Test Set.
7# testIssueIds: the issue ids of the Tests.
8removeTestsFromTestSet(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 set "12345".

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