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# List of Xray History results for the issue
18#
19# Arguments
20# limit: the maximum amount of entries to be returned. The maximum is 100.
21# start: the index of the first item to return in the page of results (page offset).
22history(limit: Int!, start: Int): XrayHistoryResults
23
24# Extra Jira information of the Test Set Issue.
25#
26# Arguments
27# fields: List of the fields to be displayed.
28# Check the field 'fields' of this Jira endpoint for more information.
29jira(fields: [String]): JSON
30
31# Date when the test set was last modified.
32lastModified: String
33
34}