OBJECT
removeAllTestSteps
link Example
The mutation below removes all the Steps from test with id "12345".
mutation {
removeAllTestSteps(
issueId: "12345",
)
}
The mutation below removes all the Steps from the version 3 of the Test with id "12345".
mutation {
removeAllTestSteps(
issueId: "12345",
versionId: 3
)
}