You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Board Query excludes Epic Issue Type
The filter from your Agile Board is used to find the Epics to display.
Sometimes this filter has been configured to exclude the Epic Issue Type and therefore the product can't access them.
For example, you may have a JQL filter query which inadvertently excludes the Epic Issue Type like the following:
project = EXAMPLE and issueType in (Story, Task, Bug) ORDER BY Rank desc
Resolution
To fix this issue, adjust the board query to include the Epic Issue Type, using the example:
project = EXAMPLE and issueType in (Epic, Story, Task, Bug) ORDER BY Rank desc
Or simply remove the check on issueType entirely:
project = EXAMPLE ORDER BY Rank desc
You can read more on how to configure your Board's filter query here