Hi
Id like to create a board to show only stories that are linked to the epic with specific assignee.
Is it possible without any plugin?
Boards are basically pulling issues from the JQL assigned to it. for your requirement you just need to frame JQL query and use that as a source for your board
Refer THIS article for more details and steps
if you want to show stories which are linked to any epic then the JQL would be
project = KEY AND issuetype = Story AND assignee = assigneename AND "Epic Link" is not EMPTY
if you want to show stories which are linked to particular epics then the query would be
project = KEY AND issuetype = Story AND assignee = assigneename AND "Epic Link" in (EPIC-1)
Hope this gives you some idea
BR,
Leo
Hi Leo
I want to filter all stories from all epics where assignee (or whatever) is specific user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1st query would be the best one for you
project = <your project KEY> AND issuetype = Story AND assignee = <specific user> AND "Epic Link" is not EMPTY
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.