Dashboards
Retrieves dashboards available to the user, including those shared with others or marked as favorites.
テーブル固有の情報
Select
本製品 はJira API を使用して一部のフィルタを処理します。Jira はId およびFilter カラムをサポートしますが、両方同時にはサポートしません。
本製品 は他のフィルタを本製品 内で処理します。
例えば、次のクエリはサーバー側で処理されます。
SELECT * FROM Dashboards WHERE Id = 10001疑似カラムFilter でフィルタをかけることもできます。
SELECT * FROM Dashboards WHERE Filter = 'favourite'
Columns
| Name | Type | References | SupportedOperators | Platform | Description |
| Id [KEY] | String | = | Common | The unique identifier assigned to the dashboard within Jira. This ID is used to reference the dashboard programmatically. | |
| Name | String | Common | The display name of the dashboard, visible to users in the Jira interface. | ||
| View | String | Common | The direct URL that allows users to view the dashboard in the Jira interface. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| Filter | String | An optional filter to limit the results to specific categories of dashboards. For example, 'favourite' shows dashboards marked as favorites, while 'my' shows dashboards owned by the current user.
使用できる値は次のとおりです。favourite, my |