We are looking to create a board that shows the following
- Each swim lane is an in progress epic
- Within each swim lane the respective stories/tasks for the epic are shown
- Each column represents the status in the workflow of the stories/tasks
To do so, we will base the board off of an advanced query result. The issue is that we can't seem to filter for stories/tasks for EPICs that are in progress. In other words we want to query for
project = PRODUCT AND issuetype in (Epic, Story) AND issueEpicStatus = "IN PROGRESS" order by created DESC
This of course fake query to convey the concept. But we can't seem to get data from the parent epic in the query of the issues. Does anybody have any suggestions here? The "EpicStatus" fields doesn't seem to work because it only works if you are querying for epics and not issues.
Do you have any third party apps that extend the JQL functionality, or are you open to getting such?
You cannot do what you want with native Jira functionality. You would need something like
(project=X and issuetype=Epic and EpicStatus="in Progress") or (project=x and "Epic Link" in ( (project=X and issuetype=Epic and EpicStatus="in Progress") )
An app that supports using sub-filters could assist with your query. Jira doesn't natively do that. Adaptavist Scriptrunner is one such app, but I know there are others. If you go to the marketplace and search for "jira jql extensions" that should give you options to investigate.
Thank you Trudy!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.