OBJECT
addTestEnvironmentsToTestExecution
link GraphQL Schema definition
1 Mutation addTestEnvironmentsToTestExecution { 2 3 # Mutation used to add Test Environments to the Test Execution. 4 # 5 # Arguments 6 # issueId: the issue id of the Test Execution. 7 # testEnvironments: the test environments to add. 8 String!, : [String]!): AddTestEnvironmentsResult ( : 9 10 }
link Example
The mutation below will add the test Environments "android" and "ios" to the Test execution "12345".
mutation { addTestEnvironmentsToTestExecution( issueId: "12345", testEnvironments: ["android", "ios"] ) { associatedTestEnvironments createdTestEnvironments warning } }