OBJECT

updateTestFolder

link GraphQL Schema definition

1Mutation updateTestFolder {
2
3# Mutation used update the Test folder on the Test Repository.
4#
5# Arguments
6# issueId: the issue id of the Test.
7# folderPath: the Test repository folder for the Test.
8updateTestFolder(issueId: String!, folderPath: String!): String
9
10}

link Example

The mutation below will add the test to "Component/UI" folder.

mutation {
    updateTestFolder(
        issueId: "12345",
        folderPath: "/Component/UI"
    )
}

The mutation below will move the Test to the root.

mutation {
    updateTestFolder(
        issueId: "12345",
        folderPath: "/"
    )
}