Skip to main content

Unlink Test Suites

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

Operation: mutation UnlinkFromGlobalTemplate($childTestSuiteId: ObjectID!){ unlinkChildTestSuiteFromParentTestSuite(input: { childTestSuiteId: $childTestSuiteId }) { parentTestSuite { id } childTestSuite { id } } }
UnlinkFromGlobalTemplateTry in Explorer
GraphQL
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.