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# Extra Jira information of the Precondition Issue.
33#
34# Arguments
35# fields: list of the fields to be displayed.
36# Check the field 'fields' of this Jira endpoint for more information.
37jira(fields: [String]): JSON
38
39# Date when the precondition was last modified.
40lastModified: String
41
42# Test Repository folder of the Precondition.
43folder: Folder
44
45}