分离我们的 JIRA 看板

问题描述

我有一个关于分离 JIRA 板的问题。请参阅下文。

数据管理看板

project = WFDM4 ORDER BY cf[10005] ASC
352 Issues

数据景观看板

project = WFDM4 AND labels in (dl_board) ORDER BY priority DESC,updated DESC
1 Issues

如何编辑数据管理看板的 JQL 以分离 JIRA 看板? 尝试:

project = WFDM4 AND labels not in  (dl_board) ORDER BY priority DESC,updated DESC
259 Issues

新的 JQL 中似乎缺少一些问题,因为它只返回了 259 个问题。我希望这些看板完全独立。

解决方法

也许问题是因为有些问题没有任何标签。 当问题没有标签时,所有比较都会返回 false,即使比较是否定的也是如此。

试试这个:

project = WFDM4 AND (
   (labels is empty)
   OR (labels not in (dl_board) )
ORDER BY ...