OBJECT
Test
Test issue type
link GraphQL Schema definition
1 type Test { 2 3 # Issue id of the Test issue. 4 String : 5 6 # Project id of the Test issue. 7 String : 8 9 # Test type of the Test issue. 10 TestType : 11 12 # Step definition of the Test issue. 13 Step] : [ 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 Xray History results for the issue 68 # 69 # Arguments 70 # limit: the maximum amount of entries 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 Int!, : Int): XrayHistoryResults ( : 73 74 # List of Test versions of the Test 75 # 76 # Arguments 77 # limit: the maximum amount of Test versions to be returned. The maximum is 100. 78 # start: the index of the first item to return in the page of results (page offset). 79 # archived: if should include archived Test versions in the result. 80 # testTypeId: to filter Test versions by Test Type 81 Int!, : Int, : Boolean, : String): TestVersionResults ( : 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 }