OBJECT

TestVersion

link GraphQL Schema definition

1type TestVersion {
2
3# Number of the Test version.
4id: Int!
5
6# Name of the Test version.
7name: String!
8
9# If is the default Test version.
10default: Boolean!
11
12# If is an archived Test version.
13archived: Boolean!
14
15# Test type of the Test version.
16testType: TestType
17
18# Step definition of the Test version.
19steps: [Step]
20
21# Unstructured definition of the Test version.
22unstructured: String
23
24# Gherkin definition of the Test version.
25gherkin: String
26
27# Gherkin type of the Test version.
28# Possible values: 'scenario' or 'scenario_outline'.
29scenarioType: String
30
31test: Test!
32
33# Arguments
34# issueIds: the ids of the Preconditions.
35# limit: the maximum amount of Preconditions to be returned. The maximum is 100.
36# start: the index of the first item to return in the page of results (page offset).
37preconditions(issueIds: [String], limit: Int!, start: Int): PreconditionResults
38
39# List of Test Executions associated with the Test version.
40#
41# Arguments
42# issueIds: the issue ids of the Test Executions
43# limit: the maximum amount of Test Executions to be returned. The maximum is 100.
44# start: the index of the first item to return in the page of results (page offset).
45testExecutions(issueIds: [String], limit: Int!, start: Int): TestExecutionResults
46
47# Arguments
48# limit: the maximum amount of Test Runs to be returned. The maximum is 100.
49# start: the index of the first item to return in the page of results (page offset).
50testRuns(limit: Int!, start: Int): TestRunResults
51
52# Date when the Test version was last modified.
53lastModified: String
54
55}