Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Scrum board "quick filter" query to show EPIC, linked Story and sub-tasks (of story)

corey_seamster February 2, 2023

Currently, i'm using a scrum board quick filter like below. but subtasks aren't showing up on scrum board with EPIC link and parent story. Can you assist?

 

Sprint in openSprints() AND labels in (XYZ) AND resolution = Unresolved AND project = "ABC" OR "Epic Link" in (ABC or 123) OR issue IN subtasksOf('"Epic Link" in (ABC or 123)') ORDER BY Rank ASC

 

Thanks for your support!

1 answer

1 accepted

0 votes
Answer accepted
Trudy Claspill
Community Champion
February 2, 2023

Hello @corey_seamster 

Welcome to the Atlassian community!

If you don't use that quick filter, do you see the subtasks in the board?

If you run that same filter in the Search Issue screen do you get the results you expect?

corey_seamster February 3, 2023

Hello Trudy,

To clarify, the scrum board is based on the following query.

scrum board query:

project in (XYZ) AND resolution = Unresolved AND labels in (XYZ) ORDER BY Rank ASC

quick filter (that doesn't show sub-tasks of the parent stories and EPIC links associated):

Sprint in openSprints() AND labels in (XYZ) AND resolution = Unresolved AND project= XYZ AND "Epic Link" = 123 AND issue in subtasksOf('"Epic Link" in (123)') ORDER BY Rank ASC

^it only shows Epic link with parent story

Trudy Claspill
Community Champion
February 3, 2023

I believe your syntax is incorrect.

Change the part I bolded:

Sprint in openSprints() AND labels in (XYZ) AND resolution = Unresolved AND project= XYZ AND "Epic Link" = 123 AND issue in subtasksOf('"Epic Link" in (123)') ORDER BY Rank ASC 

To this:

Sprint in openSprints() AND labels in (XYZ) AND resolution = Unresolved AND project= XYZ AND ("Epic Link" = 123 OR issuefunction in subtasksOf('"Epic Link" in (123)')) ORDER BY Rank ASC

Like corey_seamster likes this
corey_seamster February 6, 2023

This worked! -- Thank you for the feedback and support:)

Suggest an answer

Log in or Sign up to answer