Hi,
I am looking for a way to pull out Epics which don't contain a Task which is assigned to a specific Team. I am basically trying to extract gaps, where we have an Epic, I know has an impact on our docs team, but when I look inside there is no Task defined which is assigned to the Docs Team.
So I need the capability, in JQL, to iterate through the issues inside one of these Epics and return the Epic, if there is no task in there that satisfies a certain criteria (in my case its 'team = 'Docs'').
I have looked at Adaptavist Scriptrunner functions, but nothing jumps out at me that would allow me perform this query.
Currently I use 2 queries and have to manually cross check both;
project = MY-PROJECT AND issuetype = Epic AND statusCategory != Done AND labels in (impacts-docs)
issueFunction in issuesInEpics("project = MY-PROJECT and labels in (impacts-docs) and statusCategory != Done") and Team = 'Docs'
It's the diff(at Epic level) of these queries which gives me what I want.
Any ideas if this can actually be done?
Chris.
Hi @Pramodh M
Thanks for suggestion, but this will not work. I am looking for Epics which don't have a child task which has a specific team assignment.
Chris.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My Suggestion was to use this a base query and include your query as well
"Parent Link" = EMPTY
will return the Epics which don't have any child issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.