6

我想查询 JIRA 中与超过 1 个组件相关联的所有问题。这在 JQL 中是否可行,如何实现?

4

4 回答 4

1

我没有找到在 JQL 中可行的解决方案。我也不相信我有能力编写 JQL 函数,所以我没有去探索这条路线。

我需要能够获得包含多个组件的票证列表。我通过将票证导出到 excel 来做到这一点,然后添加一列检查组件列中同一行中的单元格:

=IF(ISNUMBER(SEARCH(",", P5)), "Multi Components", "Single Component")

这将检查单元格中的部分文本","。如果它有逗号,Multi Components则返回。

于 2014-07-18T14:23:27.630 回答
0
component in ("component 1", "component 2", "component 3") ORDER BY  updated DESC

以上解决方案帮助了我:)

于 2021-03-02T05:47:31.863 回答
-1

像这样的东西应该工作:

(mycomponent1, "我的组件 2") 中的组件

高级搜索页面上的语法帮助图标提供了更多帮助

于 2011-08-30T18:43:02.910 回答
-1

您可以使用

component in ("Component A") and component in ("Component B")
于 2018-12-18T07:45:23.030 回答