Hi community,
I want to build a query to find all Epics, which has a Story which hasn't the same fixVersion like the parent Epic.
So I build something like:
issuetype = Epic AND fixVersion = xyz AND issueFunction in epicsOf("issuetype = story and fixversion not in (xyz)")
But now I pre-filtered already to fixVersion = xyz. And have to add all combinations in future, in case a new fixVersion is created. My target is to have a filter which I don't have to change everytime.
So I look for a query like:
issuetype = Epic AND issueFunction in epicsOf("issuetype = story and fixversion story != fix version epic")
Is this possible?
Kind regards,
Jan
issuetype = Epic AND fixVersion in unreleasedVersions() AND issueFunction in epicsOf("issuetype = story and fixversion not in unreleasedVersions()") ORDER BY Rank ASC
try this - hope this helps you
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.