Filter board: Show all stories in epics that has specific assignee

Kote Khutsishvili
Contributor
March 9, 2020

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?

1 answer

0 votes
Leo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 9, 2020

Hi @Kote Khutsishvili,

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

Kote Khutsishvili
Contributor
March 9, 2020

Hi Leo

I want to filter all stories from all epics where assignee (or whatever) is specific user.

Leo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 9, 2020

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

Suggest an answer

Log in or Sign up to answer