Is there a JIra request that will return all stories without EPIC?

I am trying to tidy up our board and create an accurate map.

To do this, I need to come up with a query that will return open user stories in a specific project that has no links to problems (preferably "related to (primary)"). The latter part does not seem to be supported.

I looked at the Q&S post, like a few years, so I wonder if this has been recently updated?

I am using version 5.1

Thank!

+4
source share
3 answers

issueetype = Story and "Epic Link"! = EMPTY

+11
source

I used the following query:

project = PROJECTNAME issueetype = " " -

, , , , ?

+1

Just to throw another answer in a bowl.

You can use your usual working panel (Scrum, Kanban, etc.) and add swimlane using JQL:

"Epic Link" is EMPTY

I just did it for our board, looking at just that.

0
source

Source: https://habr.com/ru/post/1536584/


All Articles