OBJECT

removeTestExecutionsFromTest

link GraphQL Schema definition

1Mutation removeTestExecutionsFromTest {
2
3# Mutation used to remove Test Executions from the Test.
4#
5# Arguments
6# issueId: the issue id of the Test.
7# testExecIssueIds: the issue ids of the Test Executions.
8removeTestExecutionsFromTest(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 "12345".

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