OBJECT

updatePreconditionFolder

link GraphQL Schema definition

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

link Example

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

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

The mutation below will move the Precondition to the root.

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