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!
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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.