I have a filter/query showing a list of all issues in status done ordered by sprint.
But some issues are assigned to more than one sprint and then the first assigned sprint is used for sorting. But I want to order by the last assigned sprint.
My query:
status = 'DONE' AND Sprint is not EMPTY order by Sprint DESC
Ordering by "Updated" does not work as sometimes old issues are updated.
Result: Issues completed in Sprint 70 are mixed with issues completed in Sprint 69.
with this plugin https://marketplace.atlassian.com/apps/1218767/smart-ql?hosting=server&tab=overview
you can do following query
select aux.ASISSUEKEY(IL.SOURCE), count(il.DESTINATION)
from ISSUELINKS IL where name = 'Relates' or name = 'jira_subtask_link'
group by IL.SOURCE HAVING COUNT(IL.DESTINATION) > 2
1. Script Runner has "issueFunction in hasSubtasks()" JQL function but I do not know a way to restrict issues which have 2 or more subtasks
2. Enhancer Plugin has "Linked Issues" custom field. You can use it in JQL function e.g. ("Relates Link Field" > 2)
https://confluence.snapbytes.com/display/JEP/Linked+Issues+custom+field
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.