OBJECT

renameFolder

link GraphQL Schema definition

1Mutation renameFolder {
2
3# Mutation used to rename 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.
9# newName: the new name of the Folder.
10renameFolder(projectId: String, testPlanId: String, path: String!, newName: String!): ActionFolderResult
11
12}

link Example

The mutation below will rename a Folder.

mutation {
    renameFolder(
        projectId: "10000",
        path: "/generic",
        newName: "Junit"
    ) {
        folder {
            name
            path
            testsCount
        }
        warnings
    }
}