OBJECT
Query
link GraphQL Schema definition
1 type Query { 2 3 # Returns the folder for the given projectId with the specified Path along with its child folders. 4 # 5 # 6 # Arguments 7 # projectId: the project id of the Folder. 8 # testPlanId: the Test Plan id of the Folder. 9 # path: the path of the Folder. 10 String, : String, : String!): FolderResults ( : 11 12 # Returns a Test by issueId. 13 # 14 # 15 # Arguments 16 # issueId: the id of the Test issue to be returned. 17 String): Test ( : 18 19 # Returns multiple tests by jql, issue ids, project id or test type. 20 # 21 # 22 # Arguments 23 # jql: the jql that defines the search. 24 # issueIds: the ids of the Test issues to be returned. 25 # projectId: the id of the project of the Test issues to be returned. 26 # testType: the Test Type of the Test issues to be returned. 27 # modifiedSince: all tests modified after this date will be returned 28 # limit: the maximum amount of Tests 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 # folder: the folder information required to filter the Test issues to be returned. 31 String, : [String], : String, : TestTypeInput, : String, : Int!, : Int, : FolderSearchInput): TestResults ( : 32 33 # Returns a test (with the call test steps expanded) by issue id and version id. 34 # 35 # Arguments 36 # issueId: the id of the test issue to be returned. 37 # versionId: the id of a Test version. If not given, will get the default Test version. 38 String!, : Int): ExpandedTest ( : 39 40 # Returns multiple tests (with the call test steps expanded) by jql, issue ids, project id or test type. 41 # 42 # 43 # 44 # Arguments 45 # jql: the jql that defines the search. 46 # issueIds: the ids of the Test issues with default Test versions to be returned. Cannot be used with tests. 47 # tests: the ids of the Test versions and Tests. If not given Test Version, will get the default Test version. Cannot be used with issueIds. 48 # projectId: the id of the project of the Test issues to be returned. 49 # testType: the Test Type of the Test issues to be returned. 50 # modifiedSince: all tests modified after this date will be returned 51 # limit: the maximum amount of Tests 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 # folder: the folder information required to filter the Test issues to be returned. 54 ( 55 String, : 56 String], : [ 57 TestWithVersionInput], : [ 58 String, : 59 TestTypeInput, : 60 String, : 61 Int!, : 62 Int, : 63 FolderSearchInput : 64 ): ExpandedTestResults 65 66 # Returns a Coverable Issue by issueId. 67 # 68 # 69 # Arguments 70 # issueId: the id of the Coverable Issue to be returned. 71 String!): CoverableIssue ( : 72 73 # Returns multiple coverable issues by jql or issue ids. 74 # 75 # Arguments 76 # jql: the jql that defines the search. 77 # issueIds: the ids of the Coverable Issues to be returned. 78 # limit: the maximum amount of Tests to be returned. The maximum is 100. 79 # start: the index of the first item to return in the page of results (page offset). 80 String, : [String], : Int!, : Int): CoverableIssueResults ( : 81 82 # Returns a Dataset by its testIssueId. 83 # 84 # Arguments 85 # testIssueId: The unique identifier of the Dataset to be returned. 86 # testExecIssueId: (Optional) The unique identifier of the Test Execution. 87 # testPlanIssueId: (Optional) The unique identifier of the Test Plan. 88 # callTestIssueId: (Optional) The unique identifier of the Test Call. 89 String!, : String, : String, : String): Dataset ( : 90 91 # Returns multiple Datasets based on optional filters. 92 # 93 # Arguments 94 # testIssueIds: Filter by test issue IDs. 95 # testExecIssueIds: (Optional) Filter by Test ExecutionIds. 96 # testPlanIssueIds: (Optional) Filter by Test PlanIds. 97 String], : [String], : [String]): [Dataset] ( : [ 98 99 # Returns a Precondition by issue id. 100 # 101 # 102 # Arguments 103 # issueId: the issue id of the Precondition to be returned. 104 String): Precondition ( : 105 106 # Returns multiple Preconditions by jql, issueIds, projectId or Precondition Type. 107 # 108 # 109 # Arguments 110 # jql: the jql that defines the search. 111 # issueIds: the ids of the Precondition issues to be returned. 112 # projectId: the id of the project of the Precondition issues to be returned. 113 # preconditionType: the Precondition Type of the Precondition issues to be returned. 114 # limit: the maximum amount of Preconditions to be returned. The maximum is 100. 115 # start: the index of the first item to return in the page of results (page offset). 116 # modifiedSince: all Preconditions modified after this date will be returned 117 # folder: the folder information required to filter the Test issues to be returned. 118 ( 119 String, : 120 String], : [ 121 String, : 122 TestTypeInput, : 123 Int!, : 124 Int, : 125 String, : 126 PreconditionFolderSearchInput : 127 ): PreconditionResults 128 129 # Returns a Test Set by issueId 130 # 131 # 132 # Arguments 133 # issueId: the id of the Test Set issue to be returned. 134 String): TestSet ( : 135 136 # Returns multiple Test Sets by jql, issueIds or projectId. 137 # 138 # 139 # Arguments 140 # jql: the jql that defines the search. 141 # issueIds: the ids of the Test Set issues to be returned. 142 # projectId: the id of the project of the Test Set issues to be returned. 143 # limit: the maximum amount of Test Sets to be returned. The maximum is 100. 144 # start: the index of the first item to return in the page of results (page offset). 145 # modifiedSince: all test sets modified after this date will be returned 146 String, : [String], : String, : Int!, : Int, : String): TestSetResults ( : 147 148 # Returns a Test Plan by issue id. 149 # 150 # 151 # Arguments 152 # issueId: the issue id of the Test Plan issue to be returned. 153 String): TestPlan ( : 154 155 # Returns multiple Test Plans by jql, issue ids or project id. 156 # 157 # 158 # Arguments 159 # jql: the jql that defines the search. 160 # issueIds: the ids of the Test Plan issues to be returned. 161 # projectId: the id of the project of the Test Plan issues to be returned. 162 # limit: the maximum amount of Test Plans to be returned. The maximum is 100. 163 # start: the index of the first item to return in the page of results (page offset). 164 # modifiedSince: all Test Plans modified after this date will be returned 165 String, : [String], : String, : Int!, : Int, : String): TestPlanResults ( : 166 167 # Returns a Test Execution by issue id. 168 # 169 # 170 # Arguments 171 # issueId: the id of the Test Execution issue to be returned. 172 String): TestExecution ( : 173 174 # Returns multiple Test Executions by jql, issue ids or project id. 175 # 176 # 177 # Arguments 178 # jql: the jql that defines the search. 179 # issueIds: the ids of the Test Executions issues to be returned. 180 # projectId: the id of the project of the Test Execution issues to be returned. 181 # limit: the maximum amount of Test Executions to be returned. The maximum is 100. 182 # start: the index of the first item to return in the page of results (page offset). 183 # modifiedSince: all Test Executions modified after this date will be returned 184 String, : [String], : String, : Int!, : Int, : String): TestExecutionResults ( : 185 186 # Returns a Test Run by Test issue id and Test Execution issue id. 187 # 188 # Arguments 189 # testIssueId: the issue id of the Test of the Test Run. 190 # testExecIssueId: the issue id of the Test Execution of the Test Run. 191 String, : String): TestRun ( : 192 193 # Returns a Test Run by id. 194 # 195 # Arguments 196 # id: the id of the Test Run. 197 String): TestRun ( : 198 199 # Returns multiple Test Runs testIssueIds and/or testExecIssueIds. 200 # 201 # 202 # Arguments 203 # testIssueIds: the issue ids of the Test of the Test Runs. 204 # testExecIssueIds: the issue ids of the Test Execution of the Test Runs. 205 # testRunAssignees: the user account ids of the assignee of the Test Runs. 206 # limit: the maximum amount of Test Runs to be returned. The maximum is 100. 207 # start: the index of the first item to return in the page of results (page offset). 208 # modifiedSince: all TestRuns modified after this date will be returned 209 String], : [String], : [String], : Int!, : Int, : String): TestRunResults ( : [ 210 211 # Returns multiple Test Runs by id. 212 # 213 # Arguments 214 # ids: the ids of the Test Runs. 215 # limit: the maximum amount of Test Runs to be returned. The maximum is 100. 216 # start: the index of the first item to return in the page of results (page offset). 217 String], : Int!, : Int): TestRunResults ( : [ 218 219 # Returns a Status by Test Run Step Status name. 220 # 221 # Arguments 222 # name: the status name of test run step status 223 String): StepStatus ( : 224 225 # Returns a Status by Test Run Status name. 226 # 227 # Arguments 228 # name: the status name of Test Run Status 229 String): Status ( : 230 231 # Returns all Test Run Status. 232 Status] : [ 233 234 # Returns all Test Run Step Status. 235 StepStatus] : [ 236 237 # Returns the Project Settings of a Project. 238 # 239 # Arguments 240 # projectIdOrKey: Project Id 241 String): ProjectSettings ( : 242 243 # Returns the Issue Link Types 244 IssueLinkType] : [ 245 246 }