ADO.NET Provider for Jira

Build 22.0.8479

BoardSprints

Query the agile Sprints related to a Jira Board.

テーブル固有の情報

Select

本製品 はJira API を使用して一部のフィルタを処理します。本製品 は他のフィルタを本製品 内で処理します。 SupportEnhancedSQL をfalse に設定することで、クエリのクライアント側の実行をオフにできます。

例えば、次のクエリはサーバー側で処理されます。

SELECT * FROM BoardSprints WHERE BoardId = 122 

BoardId の使用:

SELECT * FROM BoardSprints WHERE BoardId IN  (12,42) 

かんばんタイプのボードはスプリントをサポートしていないため、次のようなクエリを使用すると、すべてのスプリントをより速く取得できます。

SELECT * FROM BoardSprints WHERE BoardId IN (SELECT Id FROM Boards WHERE Type != 'kanban') 

Columns

Name Type References SupportedOperators Platform Description
Id [KEY] Integer Common The Id of the sprint.
BoardId [KEY] Integer

Boards.Id

=,IN Common The board Id the sprint is in.
Name String Common The name of the sprint.
State String = Common The state of the sprint. The sprint state can only transition from 'future' to 'active', and from 'active' to 'close'

使用できる値は次のとおりです。future, active, closed

Goal String Common The goal assigned for the sprint.
OriginBoardId Integer

Boards.Id

= Common The board Id the sprint originated from. This field cannot be updated
StartDate Datetime Common The date when the sprint was started.
EndDate Datetime Common The date when the sprint has ended.
CompleteDate Datetime Common The date when the sprint was completed.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8479