OBJECT

removeTestExecutionsFromTestPlan

link GraphQL Schema definition

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

link Example

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

mutation {
    removeTestExecutionsFromTestPlan(issueId: "12345", testExecIssueIds: ["54321", "67890"])
}