英文:
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:
答案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"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论