OBJECT

Precondition

Precondition issue type

link GraphQL Schema definition

1type Precondition {
2
3# Id of the Precondition issue.
4issueId: String
5
6# Project id of the Precondition issue.
7projectId: String
8
9# Precondition Type of the Precondition issue.
10preconditionType: TestType
11
12# Definition of the Precondition issue.
13definition: String
14
15# List of the Tests associated with the Precondition issue.
16#
17# Arguments
18# issueIds: the issue ids of the Tests.
19# limit: the maximum amount of Tests to be returned. The maximum is 100.
20# start: the index of the first item to return in the page of results (page offset).
21tests(issueIds: [String], limit: Int!, start: Int): TestResults
22
23# List of the Test versions associated with the Precondition issue.
24#
25# Arguments
26# limit: the maximum amount of Test versions to be returned. The maximum is 100.
27# start: the index of the first item to return in the page of results (page offset).
28# archived: if should include archived Test versions in the result.
29# testTypeId: to filter Test versions by Test Type
30testVersions(limit: Int!, start: Int, archived: Boolean, testTypeId: String): TestVersionResults
31
32# List of Xray History results for the issue
33#
34# Arguments
35# limit: the maximum amount of entries to be returned. The maximum is 100.
36# start: the index of the first item to return in the page of results (page offset).
37history(limit: Int!, start: Int): XrayHistoryResults
38
39# Extra Jira information of the Precondition Issue.
40#
41# Arguments
42# fields: list of the fields to be displayed.
43# Check the field 'fields' of this Jira endpoint for more information.
44jira(fields: [String]): JSON
45
46# Date when the precondition was last modified.
47lastModified: String
48
49# Test Repository folder of the Precondition.
50folder: Folder
51
52}