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
I have created a filter that uses the following:
resolution = unresolved AND issueFunction in epicsOf(“Project = ‘PROJECTNAME’”) AND NOT issueFunction in epicsOf(“resolution = unresolved”)
My intent is to create a list of epics that are still open (unresolved) but which have no remaining unresolved children (stories, etc).
This returns a relatively finite list, which I would expect. Each of the items returned, indeed, do not have any unresolved children. It appears to be working….until I find another Epic that ALSO has not unresolved children, is part of the PROJECTNAME project, but DOES NOT appear as a search result in the filter.
Any ideas why?
and what about a JQL like this:
project = PROJECTNAME AND issuetype = Epic AND resolution = unresolved AND NOT issueFunction in parentsOf("issueFunction in subtasksOf('project = PROJECTNAME AND issuetype = Epic AND issueFunction in hasSubtasks()') AND resolution = unresolved")
?
Hi @Michael Czyzewski ,
you could try with this JQL:
project = "PROJECTNAME" AND issuetype = Epic AND resolution = unresolved AND NOT IN (issueFunction in portfolioParentsOf("project = 'PROJECTNAME' AND resolution != unresolved"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
AND NOT IN fails. I believe it is expecting a field (I.e. AND field NOT IN….)
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.