Hi,
I have a project on Jira cloud that uses multiple epics across multiple boards.
One of these boards is a Kanban board where I would like to base the swimlanes on epics. However I only want the board itself to display 2 issue types (pages and stories) and 3 of the various epics in the overall project. The current query is:
project = LMREU AND issuetype in (Epic, Page, Story) AND "Epic Link" in (LMREU-3, LMREU-769, LMREU-115) ORDER BY priority DESC, updated DESC
LMREU 3, 769 and 115 being the 3 epics in question.
This query only displays the issue types 'page' and 'story' from the 3 epics. So far, so good.
However when I base swimlanes on epics, all the issues on the Kanban board disappear. I've seen the question on here several times but not in a query that is specify particular epics.
Any help would be hugely appreciated!
Hello @David Hazeel
Please change your query to below and then you will see the epics as well as the pages and stories
("Epic Link" in (LMREU-3, LMREU-769, LMREU-115) or issuekey in (LMREU-3, LMREU-769, LMREU-115)) and issuetype in (Epic, Page, Story)
And then you can groupBy Epic as well. Currently your filter is incorrect as it's not fetching the epics.
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.
Thank you for getting back with an answer - however I can't get the filter to return any results when replacing epic link with epic name. If possible, could you please give an example of how you would phrase the query using epic name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
I think your current filter doesn't show the Epics. Try to change your Board filter in the Issue Navigator and see if it also returns the relevant Epics.
Something like this might work:
project = XYZ AND issuetype in (Task, Epic) OR ( issuetype in (Task) AND "Epic Name" = "An Epic Name")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much - this has also worked. Much appreciated.
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.