You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
We have a next-gen project with all features enabled (roadmap, backlog, sprints etc). We have created a query to enable team members to see all open items in the sprint assigned to them and we want to group sub tasks under their parent.
The standard way to do this seems to use order by rank however this does not work in a next gen project. The expect result is for sub tasks to appear under their parent (story, sub-task, subtask followed by the next story, sub-task, sub-task etc.) What actually happens is that all stories appear then all sub-tasks.
Is there a way to group subtasks by their parent in a next-gen project? here is the JQL:
project = xyz AND assignee = currentUser() AND resolution = Unresolved order by rank ASC
project = xyz AND assignee = currentUser() AND resolution = Unresolved order by parent, rank ASC
Try that @John H - I added parent into the ordering
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Lenin and thanks for taking the time to answer my question!
Unfortunately the query is in JQL as we are using it in confluence (and other pages) and GROUP BY is not supported in jira JQL statements :(
Thanks for the idea though :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In addition, if I use the next-gen UI and group by sub task then tasks are shown for the entire team. What my team are trying to acheive is a view where they can see all stories/bugs/sub-tasks assigned to them and group them by sub-task.
Any suggestions??
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think the "Assignee" filter should do the job for that:
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.