OBJECT

removeIssuesFromFolder

link GraphQL Schema definition

1Mutation removeIssuesFromFolder {
2
3# Mutation used to remove issues from Folder.
4#
5# Arguments
6# projectId: the project id of the Folder.
7# issueIds: the Test or Precondition ids to remove from the Folder.
8removeIssuesFromFolder(projectId: String!, issueIds: [String]!): String
9
10}

link Example

The mutation below will remove issues from a Folder.

mutation {
    removeIssuesFromFolder(
        projectId: "10000",
        issueIds: ["10002","12324","12345"]
    )
}