OBJECT

removeTestPlansFromTest

link GraphQL Schema definition

1Mutation removeTestPlansFromTest {
2
3# Mutation used to remove Test Plans from the Test.
4#
5# Arguments
6# issueId: the issue id of the Test.
7# testPlanIssueIds: the issue ids of the Test Plans.
8removeTestPlansFromTest(issueId: String!, testPlanIssueIds: [String]!): String
9
10}

link Example

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

mutation {
    removeTestPlansFromTest(issueId: "12345", testPlanIssueIds: ["54321", "67890"])
}