OBJECT

TestExecution

Test Execution issue type

link GraphQL Schema definition

1type TestExecution {
2
3# Id of the Test Execution issue.
4issueId: String
5
6# Project id of the Test Execution issue.
7projectId: String
8
9# Test Environments of the Test Execution.
10testEnvironments: [String]
11
12# List of Tests associated with the Test Execution Issue.
13#
14# Arguments
15# issueIds: the issue ids of the Tests.
16# limit: the maximum amount of tests to be returned. The maximum is 100.
17# start: the index of the first item to return in the page of results (page offset).
18tests(issueIds: [String], limit: Int!, start: Int): TestResults
19
20# List of Test Plans associated with the Test Execution Issue.
21#
22# Arguments
23# issueIds: Ids of the Test Plans.
24# limit: the maximum amount of Test Plans to be returned. The maximum is 100.
25# start: the index of the first item to return in the page of results (page offset).
26testPlans(issueIds: [String], limit: Int!, start: Int): TestPlanResults
27
28# List of Test Runs for the Test Execution Issue.
29#
30# Arguments
31# limit: the maximum amount of tests to be returned. The maximum is 100.
32# start: the index of the first item to return in the page of results (page offset).
33testRuns(limit: Int!, start: Int): TestRunResults
34
35# Extra Jira information of the Test Execution Issue.
36#
37# Arguments
38# fields: List of the fields to be displayed.
39# Check the field 'fields' of this Jira endpoint for more information.
40jira(fields: [String]): JSON
41
42# Date when the test exec was last modified.
43lastModified: String
44
45}