Hello,
I am trying to create a filter that allows me to get a list of all parent issues by their label AND all sub-tasks for those parents that have a particular label. I cannot seem to figure out a way to make this query. Below is the easy part (parent by a particular label). Any help is appreciated.
labels= myTeamLabel and project in ("Project 1", "Project 2") ORDER BY Rank ASC
Community moderators have prevented the ability to post new answers.
You can possibly achieve this with the Craftforge JQL Functions Plugin (free) as well:
(labels = "myTeamLabel" and project in ("Project 1", "Project 2")) OR (issue in subtaskIssuesFromQuery("labels= \"My_Label\" and project in (\"Project 1\", \"Project 2\")")) ORDER BY Rank ASC
Cheers!
JQL Tricks Plugin (paid) has a method to support this.
(labels= myTeamLabel and project in ("Project 1", "Project 2")) OR (issue in parent("labels= myTeamLabel and project in (\"Project 1\", \"Project 2\")")) ORDER BY Rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.