Boards
Query, insert and delete the agile Boards in Jira.
テーブル固有の情報
Select
connector はJira API を使用して一部のフィルタを処理します。connector は他のフィルタをconnector 内で処理します。
サーバー側のフィルタを使用したクエリ例を次に示します。
SELECT * FROM Boards WHERE Id = 10022
その他のフィルタの使用:
SELECT * FROM Boards WHERE ProjectKeyOrId = 'QMTH' AND Type = 'scrum'
Note:有効なType フィルタの値は'scrum'、'kanban'、および'simple' です。
Insert
新しいボードを挿入するには、Name、Type、およびFilterId を指定する必要があります。
INSERT INTO Boards (Name, Type, FilterId) VALUES ('New board', 'scrum', 10200)
Note:有効な入力Type の値は'scrum' および'kanban' です。
Delete
ボードを削除するには、Id を指定する必要があります。
DELETE FROM Boards WHERE Id = 130
Columns
| Name | Type | ReadOnly | References | SupportedOperators | Platform | Description |
| Id [KEY] | Integer | True | = | Common |
The Id of the board. | |
| Name | String | False | = | Common |
The name of the board. | |
| Type | String | False | = | Common |
The type of the board. For READ operations valid values are 'scrum', 'kanban', and 'simple'. For CREATE operations only 'scrum' and 'kanban' are supported. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| ProjectKeyOrId | String |
Filter the agile boards based on the project they are located in. |
| FilterId | String |
ID of a filter that the user has permissions to view. Not supported for team-managed boards. |