OBJECT

addTestSetsToTest

link GraphQL Schema definition

1Mutation addTestSetsToTest {
2
3# Mutation used to associate Test Sets to the Test.
4#
5# Arguments
6# issueId: the issue id of the Test.
7# testSetIssueIds: the issue ids of the Test Sets.
8addTestSetsToTest(issueId: String!, testSetIssueIds: [String]!): AddTestSetsResult
9
10}

link Example

The mutation below will associate the test set with issue id "54321" to the test "12345".

mutation {
    addTestSetsToTest(
        issueId: "12345",
        testSetIssueIds: ["54321"]
    ) {
        addedTestSets
        warning
    }
}