Can I get some help figuring out why my query isn't returning the correct results?
My JIRA Agile structure is Epic -> Feature -> Requirement -> Story.
I would like to get a list of Features where all requirements under it have all their stories complete. Here is the JQL I'm trying to get to work.
project = VMC and issuetype = feature and fixversion = "Release 2.4" and issuefunction in hasLinks("relates to") and issuefunction in linkedIssuesOf("project = VMC AND issuetype = Requirement AND issuefunction in hasLinks(\"is solved by\") AND not issuefunction in linkedIssuesOf(\"project = VMC and issuetype = Story and status != Closed\", solves)", "relates to")
I'm not getting any errors, I just got get the correct results. When I drill down into the feature, then requirement, I see open stories.
Thank you for the help.
Have you tried using additional brackets? Try this:
project = VMC and issuetype = feature and fixversion = "Release 2.4" and (issuefunction in hasLinks("relates to")) and (issuefunction in linkedIssuesOf("project = VMC AND issuetype = Requirement AND issuefunction in hasLinks(\"is solved by\")) AND (not issuefunction in linkedIssuesOf(\"project = VMC and issuetype = Story and status != Closed\", solves)", "relates to"))
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.