OBJECT

TestPlan

Test Plan issue type

link GraphQL Schema definition

1type TestPlan {
2
3# Id of the Test Plan issue.
4issueId: String
5
6# Project id of the Test Plan issue.
7projectId: String
8
9# List of Tests associated with the Test Plan issue.
10#
11# Arguments
12# issueIds: the issue ids of the Tests.
13# limit: the maximum amount of tests to be returned. The maximum is 100.
14# start: the index of the first item to return in the page of results (page offset).
15tests(issueIds: [String], limit: Int!, start: Int): TestResults
16
17# List of Test Executions associated with the Test Plan issue.
18#
19# Arguments
20# issueIds: issue ids of the Test Executions.
21# limit: the maximum amount of tests to be returned. The maximum is 100.
22# start: the index of the first item to return in the page of results (page offset).
23testExecutions(issueIds: [String], limit: Int!, start: Int): TestExecutionResults
24
25# Extra Jira information of the Test Plan issue.
26#
27# Arguments
28# fields: list of the fields to be displayed.
29# Check the field 'fields' of this Jira endpoint for more information.
30jira(fields: [String]): JSON
31
32# Folder structure of the Test Plan.
33folders: FolderResults
34
35# Date when the test plan was last modified.
36lastModified: String
37
38}