OBJECT
ExpandedTest
Expaded test issue type
link GraphQL Schema definition
1 type ExpandedTest { 2 3 # Issue id of the Test issue. 4 String : 5 6 # Version id of the Test issue. 7 Int : 8 9 # Project id of the Test issue. 10 String : 11 12 # Test type of the Test issue. 13 TestType : 14 15 # Unstructured definition of the Test issue. 16 String : 17 18 # Gherkin definition of the Test issue. 19 String : 20 21 # Test Repository folder of the Test. 22 Folder : 23 24 # Gherkin type of the Test issue. 25 # Possible values: 'scenario' or 'scenario_outline'. 26 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). 34 String], : Int!, : 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). 42 String], : Int!, : 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). 50 String], : Int!, : 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). 58 String], : Int!, : 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). 65 Int!, : 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 74 Int!, : Int, : Boolean, : 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). 81 Int!, : 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). 89 String], : Int!, : 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. 96 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. 105 String, : Boolean, : String, : String): TestStatusType ( : 106 107 # Date when the test was last modified. 108 String : 109 110 # Expanded step definition of the test. 111 ExpandedStep] : [ 112 113 # Warnings generated while expanding the test steps. 114 String] : [ 115 116 }