OBJECT

ExpandedTest

Expaded test issue type

link GraphQL Schema definition

1type ExpandedTest {
2
3# Issue id of the Test issue.
4issueId: String
5
6# Version id of the Test issue.
7versionId: Int
8
9# Project id of the Test issue.
10projectId: String
11
12# Test type of the Test issue.
13testType: TestType
14
15# Unstructured definition of the Test issue.
16unstructured: String
17
18# Gherkin definition of the Test issue.
19gherkin: String
20
21# Test Repository folder of the Test.
22folder: Folder
23
24# Gherkin type of the Test issue.
25# Possible values: 'scenario' or 'scenario_outline'.
26scenarioType: String
27
28# List of Precondition associated with the Test issue.
29#
30# Arguments
31# issueIds: the ids of the Preconditions.
32# limit: the maximum amount of Preconditions to be returned. The maximum is 100.
33# start: the index of the first item to return in the page of results (page offset).
34preconditions(issueIds: [String], limit: Int!, start: Int): PreconditionResults
35
36# List of Test Sets associated with the Test issue.
37#
38# Arguments
39# issueIds: the issue ids of the Test Sets
40# limit: the maximum amount of Test Sets to be returned. The maximum is 100.
41# start: the index of the first item to return in the page of results (page offset).
42testSets(issueIds: [String], limit: Int!, start: Int): TestSetResults
43
44# List of Test Plans associated with the Test issue.
45#
46# Arguments
47# issueIds: the issue ids of the Test Plans
48# limit: the maximum amount of Test Plans to be returned. The maximum is 100.
49# start: the index of the first item to return in the page of results (page offset).
50testPlans(issueIds: [String], limit: Int!, start: Int): TestPlanResults
51
52# List of Test Executions associated with the Test issue.
53#
54# Arguments
55# issueIds: the issue ids of the Test Executions
56# limit: the maximum amount of Test Executions to be returned. The maximum is 100.
57# start: the index of the first item to return in the page of results (page offset).
58testExecutions(issueIds: [String], limit: Int!, start: Int): TestExecutionResults
59
60# List of Test Runs for the Test issue
61#
62# Arguments
63# limit: the maximum amount of Test Runs to be returned. The maximum is 100.
64# start: the index of the first item to return in the page of results (page offset).
65testRuns(limit: Int!, start: Int): TestRunResults
66
67# List of Test versions of the Test
68#
69# Arguments
70# limit: the maximum amount of Test versions to be returned. The maximum is 100.
71# start: the index of the first item to return in the page of results (page offset).
72# archived: if should include archived Test versions in the result.
73# testTypeId: to filter Test versions by Test Type
74testVersions(limit: Int!, start: Int, archived: Boolean, testTypeId: String): TestVersionResults
75
76# List of Xray History results for the issue
77#
78# Arguments
79# limit: the maximum amount of entries to be returned. The maximum is 100.
80# start: the index of the first item to return in the page of results (page offset).
81history(limit: Int!, start: Int): XrayHistoryResults
82
83# List of Coverable Issues associated with the Test issue
84#
85# Arguments
86# issueIds: the issue ids of the Coverable Issues
87# limit: the maximum amount of Coverable Issues to be returned. The maximum is 100.
88# start: the index of the first item to return in the page of results (page offset).
89coverableIssues(issueIds: [String], limit: Int!, start: Int): CoverableIssueResults
90
91# Extra Jira information of the Test issue.
92#
93# Arguments
94# fields: List of the fields to be displayed.
95# Check the field 'fields' of this Jira endpoint for more information.
96jira(fields: [String]): JSON!
97
98# Status of the Test. This status can be calculated based on latest status, version or Test Plan.
99#
100# Arguments
101# environment: the environment for which to calculate the for status.
102# isFinal: whether the final statuses has precedence over non-final.
103# version: the version name for which to calculate the status for.
104# testPlan: the Test Plan id for which to calculate the status for.
105status(environment: String, isFinal: Boolean, version: String, testPlan: String): TestStatusType
106
107# Date when the test was last modified.
108lastModified: String
109
110# Expanded step definition of the test.
111steps: [ExpandedStep]
112
113# Warnings generated while expanding the test steps.
114warnings: [String]
115
116}