OBJECT

createTestSet

link GraphQL Schema definition

1Mutation createTestSet {
2
3# Mutation used to create a new Test Set.
4#
5# Arguments
6# testIssueIds: the Test ids that will be associated with the Test Set.
7# jira: the Jira object that will be used to create the Test Set.
8# Check this Jira endpoint for more information related with this field.
9createTestSet(testIssueIds: [String], jira: JSON!): CreateTestSetResult
10
11}

link Example

The mutation below will create a new Test Set.

mutation {
    createTestSet(
        testIssueIds: ["54321"]
        jira: {
            fields: { summary: "Test Set for Generic Tests", project: {key: "CALC"} }
        }
    ) {
        testSet {
            issueId
            jira(fields: ["key"])
        }
        warnings
    }
}