OBJECT

deleteFolder

link GraphQL Schema definition

1Mutation deleteFolder {
2
3# Mutation used to delete a Folder.
4#
5# Arguments
6# projectId: the project id of the Folder.
7# testPlanId: the Test Plan id of the Folder.
8# path: the path of the Folder.
9deleteFolder(projectId: String, testPlanId: String, path: String!): String
10
11}

link Example

The mutation below will delete a Folder.

mutation {
    deleteFolder(
        projectId: "10000",
        path: "/generic"
    )
}