OBJECT

removePreconditionsFromTest

link GraphQL Schema definition

1Mutation removePreconditionsFromTest {
2
3# Mutation used to remove Preconditions from the Test.
4#
5#
6# Arguments
7# issueId: the issue id of the Test.
8# versionId: the id of a Test version. If not given, will update the default Test version.
9# preconditionIssueIds: the issue ids of the Preconditions.
10removePreconditionsFromTest(issueId: String!, versionId: Int, preconditionIssueIds: [String]!): String
11
12}

link Example

The mutation below will remove the preconditions with issue id "54321" and "67890" from the test "12345".

mutation {
    removePreconditionsFromTest(issueId: "12345", preconditionIssueIds: ["54321", "67890"])
}

The mutation below will remove the preconditions with issue id "54321" and "67890" from the version 3 of the Test "12345".

mutation {
    removePreconditionsFromTest(issueId: "12345", versionId: 3, preconditionIssueIds: ["54321", "67890"])
}