IssueTypes
Query the available Issue Types in Jira.
Select
本製品 はJira API を使用して一部のフィルタを処理します。
本製品 は他のフィルタを本製品 内で処理します。
SELECT * FROM IssueTypes WHERE Id = 3
Insert
挿入するにはName が必要です。次のクエリは、新しい課題タイプを作成します。
INSERT INTO IssueTypes (Name, Description, Subtask) VALUES ('Issue type name 3', 'test description', false)
Update
課題タイプId を指定して更新できます。
UPDATE IssueTypes SET Name = 'Updated Name 3', Description = 'Updated description' WHERE Id = 10306
Delete
課題タイプId を指定して課題タイプを削除します。
DELETE FROM IssueTypes WHERE Id = 10306
Columns
Name | Type | ReadOnly | References | SupportedOperators | Platform | Description |
Id [KEY] | String | True | = | Common |
The Id of the issue type. | |
Name | String | False | Common |
The name of the issue type. | ||
Description | String | False | Common |
The description of the issue type. | ||
Subtask | Boolean | False | Common |
The subtask of the issue type. Not applicable for update. | ||
IconUrl | String | True | Common |
The icon URL of the issue type. |