backlog issue list
backlog issue list [flags]条件を指定して課題の一覧を取得します。
-p,--project <string>- プロジェクトキー(カンマ区切りで複数可)(env:
BACKLOG_PROJECT) -a,--assignee <string>- 担当者(ユーザー名 or
@me) -S,--status <string>- ステータス名(カンマ区切りで複数可)
-T,--type <string>- 課題種別名(カンマ区切りで複数可)
-P,--priority <string>- 優先度名
-k,--keyword <string>- キーワード検索
--created-since <string>- 作成日 FROM(
yyyy-MM-dd) --created-until <string>- 作成日 TO(
yyyy-MM-dd) --updated-since <string>- 更新日 FROM(
yyyy-MM-dd) --updated-until <string>- 更新日 TO(
yyyy-MM-dd) --due-since <string>- 期限日 FROM(
yyyy-MM-dd) --due-until <string>- 期限日 TO(
yyyy-MM-dd) --sort <string>(default “updated”)- ソートキー
--order <string>(default “desc”)- 並び順: {asc|desc}
-L,--limit <int>(default 20)- 取得件数(1-100)
--offset <int>(default 0)- オフセット
# プロジェクトの課題一覧backlog issue list --project PROJ
# 自分に割り当てられた課題backlog issue list --assignee @me
# ステータスでフィルタbacklog issue list --project PROJ --status 処理中,未対応
# キーワード検索backlog issue list --project PROJ --keyword "ログイン"
# 最新20件を更新日順で取得backlog issue list --project PROJ --sort updated --order desc --limit 20