Skip to main content

Update Test Suites

The following mutation updates a test suite:

mutation UpdateTestSuite($testSuiteId: ObjectID!, $name: String, $alertEmails: [String]) {
updateTestSuite(
input: { testSuiteId: $testSuiteId, name: $name, alertEmails: $alertEmails }
) {
testSuite {
id
name
sitePrimary
alertEmails
}
}
}

Try in explorer