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

后端 未结 5 1657
深忆病人
深忆病人 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:49

    JQL Tricks adds tons of additional JQL functions: https://marketplace.atlassian.com/plugins/com.j-tricks.jql-plugin

    Here an example for the above using their syntax:

    issue in parent("project = MyProject AND fixVersion = 27_04_2013 and status != Closed")

提交回复
热议问题