Boards
Query, insert and delete the agile Boards in Jira.
テーブル固有の情報
Select
本製品 はJira API を使用して一部のフィルタを処理します。本製品 は他のフィルタを本製品 内で処理します。
サーバー側のフィルタを使用したクエリ例を次に示します。
SELECT * FROM Boards WHERE Id = 10022
その他のフィルタの使用:
SELECT * FROM Boards WHERE ProjectKeyOrId = 'QMTH' AND Type = 'scrum'
Insert
新しいボードを挿入するには、Name、Type、およびFilterId を指定する必要があります。
INSERT INTO Boards (Name, Type, FilterId) VALUES ('New board', 'scrum', 10200)
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. 使用できる値は次のとおりです。scrum, kanban, simple |
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 next-gen boards. |