Votes
Query the available Votes in JIRA.
Select
本製品 は、Jira API を使用してIssueId またはIssueKey を参照するフィルタを処理します。結果を取得するためにはいずれか1つが必要です。Jira API では、これらのカラムをフィルタするためにイコール(=)演算子のみがサポートされています。本製品 は、次のフィルタ以外のフィルタを、クライアント側で 内部で実行します。 SupportEnhancedSQL をfalse に設定することで、クエリのクライアント側の実行をオフにできます。
例えば、次のクエリはサーバー側で処理されます。
SELECT * FROM Votes WHERE IssueId=10100
SELECT * FROM Votes WHERE IssueKey='MKY-1'
Columns
| Name | Type | References | SupportedOperators | Platform | Description |
| Key [KEY] | String | Common | The key of the vote. | ||
| Name | String | Common | The name of the vote. | ||
| DisplayName | String | Common | The display name of the vote. | ||
| Active | Boolean | Common | Boolean indicating if the vote is active. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description | |
| IssueId | String | The issue Id of the vote. | |
| IssueKey | String | The issue key of the vote. |