Sprints
Query,create, modify and delete the agile Sprints in Jira.
テーブル固有の情報
Select
Jira アカウントのSprints のリストを取得するには、BoardSprints ビューをクエリできます。
本製品 はJira API を使用して一部のフィルタを処理します。本製品 はその他のフィルタをクライアント側で内部で実行します。例えば、次のクエリはサーバー側で処理されます。
SELECT * FROM Sprints WHERE Id = 122
SELECT * FROM Sprints WHERE Id IN ('1', '2', '3')
INSERT
新しいスプリントを作成して、ボードにリンクします。新しいスプリントの挿入には、OriginBoardId およびName カラムが必須です。
INSERT INTO Sprints (OriginBoardId, Name, Goal, StartDate, EndDate) VALUES ('1', 'Inserted Sprint', 'Complete target', '2018-02-02', '2018-04-04')
Update
スプリントのId を指定してスプリントを変更します。
UPDATE Sprints SET State = 'active' WHERE Id = 305
Delete
Id を指定して、スプリントを削除します。
DELETE FROM Sprints WHERE Id = 305
Columns
| Name | Type | ReadOnly | References | SupportedOperators | Platform | Description |
| Id [KEY] | Integer | True | =,IN | Common |
The Id of the sprint. | |
| Name | String | False | Common |
The name of the sprint. | ||
| State | String | False | Common |
The state of the sprint. A newly created sprint starts in the 'future' state. The state can only transition from 'future' to 'active', and from 'active' to 'closed' 使用できる値は次のとおりです。future, active, closed | ||
| Goal | String | False | Common |
The goal assigned for the sprint. | ||
| OriginBoardId | Integer | False |
Boards.Id | = | Common |
The board Id the sprint originated from. This field cannot be updated |
| StartDate | Datetime | False | Common |
The date when the sprint was started. | ||
| EndDate | Datetime | False | Common |
The date when the sprint has ended. | ||
| CompleteDate | Datetime | True | Common |
The date when the sprint was completed. |