OBJECT

removeTestsFromFolder

link GraphQL Schema definition

1Mutation removeTestsFromFolder {
2
3# Mutation used to remove tests from Folder.
4#
5# Arguments
6# projectId: the project id of the Folder.
7# testPlanId: the Test Plan id of the Folder.
8# testIssueIds: the Test ids to remove from the Folder.
9removeTestsFromFolder(projectId: String, testPlanId: String, testIssueIds: [String]!): String
10
11}

link Example

The mutation below will remove tests from a Folder.

mutation {
    removeTestsFromFolder(
        projectId: "10000",
        testIssueIds: ["10002","12324","12345"]
    )
}