OBJECT

removeTestSetsFromTest

link GraphQL Schema definition

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

link Example

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

mutation {
    removeTestSetsFromTest(issueId: "12345", testSetIssueIds: ["54321", "67890"])
}