OBJECT

addIssuesToFolder

link GraphQL Schema definition

1Mutation addIssuesToFolder {
2
3# Mutation used to add issues to a Folder.
4#
5# Arguments
6# projectId: the project id of the Folder.
7# path: the path of the Folder.
8# issueIds: the Test or Precondition ids to add to the Folder.
9# index: the index of where to insert the Tests in.
10addIssuesToFolder(projectId: String!, path: String!, issueIds: [String]!, index: Int): ActionFolderResult
11
12}

link Example

The mutation below will add issues to a Folder.

mutation {
    addIssuesToFolder(
        projectId: "10000",
        path: "/generic",
        issueIds: ["10002","12324","12345"]
    ) {
        folder {
            name
            path
            issuesCount
        }
        warnings
    }
}