使用JQL查询以查找具有子任务的问题。

huangapple go评论92阅读模式
英文:

Write JQL to find an issue that has subissues

问题

JQL用于检查类型为“Fix”的问题,这些问题具有非空的问题链接。我需要在下面的截图中显示的已解决的问题。

英文:

JQL to check issues of type Fix that have non empty issue links. I need issues under the resolves as shown below in the following screenshot:

使用JQL查询以查找具有子任务的问题。

答案1

得分: 1

如果您在您的Jira实例上安装了Scriptrunner,您可以使用

issuetype = fix and issueFunction in hasLinks()

hasLinks问题函数允许您指定链接类型,如果您想筛选特定的链接。

英文:

If you have Scriptrunner installed on your Jira instance, you can use

issuetype = fix and issueFunction in hasLinks()

The hasLinks issue function allows you to specify the link type if you want to filter for specific links.

答案2

得分: -1

使用以下 JQL:

issuelinktype = "解决"
英文:

use the following JQL:

issuelinktype = "resolves"

huangapple
  • 本文由 发表于 2023年6月27日 17:59:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/76563719.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定