OBJECT
TestPlan
Test Plan issue type
link GraphQL Schema definition
1 type TestPlan { 2 3 # Id of the Test Plan issue. 4 String : 5 6 # Project id of the Test Plan issue. 7 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). 15 String], : Int!, : 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). 23 String], : Int!, : Int): TestExecutionResults ( : [ 24 25 # List of Xray History results for the issue 26 # 27 # Arguments 28 # limit: the maximum amount of entries to be returned. The maximum is 100. 29 # start: the index of the first item to return in the page of results (page offset). 30 Int!, : Int): XrayHistoryResults ( : 31 32 # Extra Jira information of the Test Plan 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. 37 String]): JSON ( : [ 38 39 # Folder structure of the Test Plan. 40 FolderResults : 41 42 # Date when the test plan was last modified. 43 String : 44 45 }