Filter to show sub tasks of a filtered list of parent tasks

后端 未结 5 1646
深忆病人
深忆病人 2021-01-03 18:08

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

5条回答
  •  一向
    一向 (楼主)
    2021-01-03 18:58

    There is no need for any Plugin.

    Switch to "Advanced" filter option and enter

    status in ("Open") AND parent in (PHX-xxx,ENG-xxx)
    

    It will give you all the open tickets present as a subtask in parent JIRAs. Build more complex and enjoy using JIRA. Advanced filter options will also give you all possible values to build Queries.

提交回复
热议问题