Skip to main content

Unlink Test Suites

The following mutation unlinks a test suite from a global template:

mutation UnlinkFromGlobalTemplate($childTestSuiteId: ObjectID!){
unlinkChildTestSuiteFromParentTestSuite(input: {
childTestSuiteId: $childTestSuiteId
}) {
parentTestSuite {
id
}
childTestSuite {
id
}
}
}

Try in explorer

caution

An error will be thrown if the childTestSuiteId is not linked to a global template.