OBJECT

removeTestsFromTestPlan

link GraphQL Schema definition

1Mutation removeTestsFromTestPlan {
2
3# Mutation used to remove Tests from the Test Plan.
4#
5# Arguments
6# issueId: the issue id of the Test Plan.
7# testIssueIds: the issue ids of the Tests.
8removeTestsFromTestPlan(issueId: String!, testIssueIds: [String]!): String
9
10}

link Example

The mutation below will remove the Tests with id "54321" and "67890" from the Test Plan "12345".

mutation {
    removeTestsFromTestPlan(issueId: "12345", testIssueIds: ["54321", "67890"])
}