OBJECT

removeTestEnvironmentsFromTestExecution

link GraphQL Schema definition

1Mutation removeTestEnvironmentsFromTestExecution {
2
3# Mutation used to remove Test Environments from the Test Execution.
4#
5# Arguments
6# issueId: the issue id of the Test Execution.
7# testEnvironments: the test environments to remove
8removeTestEnvironmentsFromTestExecution(issueId: String!, testEnvironments: [String]!): String
9
10}

link Example

The mutation below will remoive the Test Environments "android" and "ios" from the Test execution "12345".

mutation {
    removeTestEnvironmentsFromTestExecution(
        issueId: "12345",
        testEnvironments: ["android", "ios"]
    )
}