LoginSignup
14
10

More than 5 years have passed since last update.

JIRAで特定のラベルが付与されているチケットを含まないフィルターを作る

Last updated at Posted at 2014-07-23

やりたいこと

特定のラベルが付与されているチケットを含まないフィルターを作りたい。

やりかた

JQLをこんな感じに書く。

project = PRJ_NAME AND (labels not in (EXCLUDE_LABEL_NAME) OR labels is EMPTY) ORDER BY Rank ASC

この時、not in(EXCLUDE_LABEL_NAME)だけだとエラーが出るので、OR labels is EMPTYを組み合わせて使わなければならない。

参考

JQL - When using 'NOT IN()' for custom fields and labels results should include EMPTY

14
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
10