Is it possible to create with default JQL a filter, which can list out every epics whose stories are under a specific release?
Let's say an epic's stories can be under different releases (Fix versions), and I'd like to see those epics, which is assigned for a release (but the epics doesn't have versions, only the stories and tasks under it)
Not natively - you'll need an App which expands the JQL function options - such as Scriptrunner
Then you could use sub-querying - for example...
issueFunction in epicsOf("issuetype = Story and fixVersion = 'Version 1'")
^ The text in the brackets is the sub-query - it's looking for Stories with certain parameters.
Ste
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.