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 # Dataset linked to the Test issue. 25 Dataset : 26 27 # Gherkin type of the Test issue. 28 # Possible values: 'scenario' or 'scenario_outline'. 29 String : 30 31 # List of Precondition associated with the Test issue. 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). 37 String], : Int!, : Int): PreconditionResults ( : [ 38 39 # List of Test Sets associated with the Test issue. 40 # 41 # Arguments 42 # issueIds: the issue ids of the Test Sets 43 # limit: the maximum amount of Test Sets to be returned. The maximum is 100. 44 # start: the index of the first item to return in the page of results (page offset). 45 String], : Int!, : Int): TestSetResults ( : [ 46 47 # List of Test Plans associated with the Test issue. 48 # 49 # Arguments 50 # issueIds: the issue ids of the Test Plans 51 # limit: the maximum amount of Test Plans to be returned. The maximum is 100. 52 # start: the index of the first item to return in the page of results (page offset). 53 String], : Int!, : Int): TestPlanResults ( : [ 54 55 # List of Test Executions associated with the Test issue. 56 # 57 # Arguments 58 # issueIds: the issue ids of the Test Executions 59 # limit: the maximum amount of Test Executions to be returned. The maximum is 100. 60 # start: the index of the first item to return in the page of results (page offset). 61 String], : Int!, : Int): TestExecutionResults ( : [ 62 63 # List of Test Runs for the Test issue 64 # 65 # Arguments 66 # limit: the maximum amount of Test Runs to be returned. The maximum is 100. 67 # start: the index of the first item to return in the page of results (page offset). 68 Int!, : Int): TestRunResults ( : 69 70 # List of Test versions of the Test 71 # 72 # Arguments 73 # limit: the maximum amount of Test versions to be returned. The maximum is 100. 74 # start: the index of the first item to return in the page of results (page offset). 75 # archived: if should include archived Test versions in the result. 76 # testTypeId: to filter Test versions by Test Type 77 Int!, : Int, : Boolean, : String): TestVersionResults ( : 78 79 # List of Xray History results for the issue 80 # 81 # Arguments 82 # limit: the maximum amount of entries to be returned. The maximum is 100. 83 # start: the index of the first item to return in the page of results (page offset). 84 Int!, : Int): XrayHistoryResults ( : 85 86 # List of Coverable Issues associated with the Test issue 87 # 88 # Arguments 89 # issueIds: the issue ids of the Coverable Issues 90 # limit: the maximum amount of Coverable Issues to be returned. The maximum is 100. 91 # start: the index of the first item to return in the page of results (page offset). 92 String], : Int!, : Int): CoverableIssueResults ( : [ 93 94 # Extra Jira information of the Test issue. 95 # 96 # Arguments 97 # fields: List of the fields to be displayed. 98 # Check the field 'fields' of this Jira endpoint for more information. 99 String]): JSON! ( : [ 100 101 # Status of the Test. This status can be calculated based on latest status, version or Test Plan. 102 # 103 # Arguments 104 # environment: the environment for which to calculate the for status. 105 # isFinal: whether the final statuses has precedence over non-final. 106 # version: the version name for which to calculate the status for. 107 # testPlan: the Test Plan id for which to calculate the status for. 108 String, : Boolean, : String, : String): TestStatusType ( : 109 110 # Date when the test was last modified. 111 String : 112 113 # Expanded step definition of the test. 114 ExpandedStep] : [ 115 116 # Warnings generated while expanding the test steps. 117 String] : [ 118 119 }