OBJECT

TestSet

Test Set type

link GraphQL Schema definition

1type TestSet {
2
3# Issue id of the Test Set Issue.
4issueId: String
5
6# Project id of the Test Set Issue.
7projectId: String
8
9# List of Tests associated with the Test Set Issue.
10#
11# Arguments
12# issueIds: Ids of the Tests.
13# limit: Maximum amount of tests to be returned. The maximum is 100.
14# start: Index of the first item to return in the page of results (page offset).
15tests(issueIds: [String], limit: Int!, start: Int): TestResults
16
17# Extra Jira information of the Test Set Issue.
18#
19# Arguments
20# fields: List of the fields to be displayed.
21# Check the field 'fields' of this Jira endpoint for more information.
22jira(fields: [String]): JSON
23
24# Date when the test set was last modified.
25lastModified: String
26
27}