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.
Using JQL how can I write a query that returns - for my project "LMNOP" - Features that have closed Jira associated issues, but exclude one specified project from the return?
I found this query which covers the first part of my question, but doesn't include an exclusion:
statusCategory != Done AND issueFunction in epicsOf("issueFunction in issuesInEpics("project = LMNOP")") AND NOT issueFunction in epicsOf("issueFunction in issuesInEpics("project = LMNOP") and statusCategory != Done")
I cannot figure out how to get the same return if I exclude one project from the return.
Essentially, I have a Feature that contains 2 projects and I only want to know when a Feature's issues are all completed with the one project, while the other can still have an issue(s) open?
Any help would be greatly appreciated!
I have tried to add a "AND project != QRSTV" in a few places around and within the query, but I'm really just missing the logical piece, so I don't even know if that is what needs to be added to make this query work how I want it to.