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

后端 未结 5 1650
深忆病人
深忆病人 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 19:05

    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.

提交回复
热议问题