筛选以显示筛选的父任务列表的子任务 [英] Filter to show sub tasks of a filtered list of parent tasks

查看:409
本文介绍了筛选以显示筛选的父任务列表的子任务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



project = MyProject AND fixVersion =1.1.1我有一个JIRA过滤器,它返回以后版本中的所有修复:和issuetype in standardIssueTypes()和status!= Closed



所有这些问题都有一个子任务,我想在一个新的过滤器结果。他们没有 fixVersion 集合。



我试过父母过滤器,但只接受密钥或ID。

是否有任何方法可以编写过滤器来访问这些,而无需手动使用在(MyProject-1,MyProject-2,MyProject-3,MyProject-4等)中的父项

解决方案<您可以安装Craftforge JQL函数
https://plugins.atlassian .com / plugin / details / 31601

然后创建一个过滤器

lockquote

project = MyProject AND fixVersion =1.1.1和standardIssueTypes()和status!= closed中的issuetype

这个过滤器例如'parentIssues'

在subtaskIssuesFromFilter中使用JQL


问题(parentIssues)


会检索所有相关的子任务问题。

I have a JIRA filter which returns all the fixes in a future release:

project = MyProject AND fixVersion = "1.1.1" and issuetype in standardIssueTypes() and status != Closed

All of these issues have Sub-Tasks which I want to have in a new filter result. They do not have the fixVersion set.

I have tried the parent filter but this only accepts Key or ID.

Is there any way I can write a filter to access these without manually using something like parent in (MyProject-1,MyProject-2,MyProject-3,MyProject-4,etc)?

解决方案

You can install the Craftforge JQL functions https://plugins.atlassian.com/plugin/details/31601

You then create a filter

project = MyProject AND fixVersion = "1.1.1" and issuetype in standardIssueTypes() and status != Closed

Call this filter for example 'parentIssues'

Using the JQL

issue in subtaskIssuesFromFilter("parentIssues")

will retrieve all relevant subtask issues.

这篇关于筛选以显示筛选的父任务列表的子任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆