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
}
}
}
caution
An error will be thrown if the childTestSuiteId
is not linked to a global template.