In the issues view, I would like to filter based on epic.
Specifically:
- how can I view all issues assigned to an epic?
- how can I view all issues NOT assigned to ANY epic?
When I add the "Epic Link" to the filter, the drop down does not contain any items. How can I get this to work?
ok my first answer was wrong so now we gonna proceed with this one...
"Epic Link" = POR-16
this example will show you all issues linked to the Epic "POR-16"
you will need to check the correct issue-key to modify the jql to match your needs.
Open your Rapidboard in Plan Mode and see the lefthand EPIC slider to check which Issue is the Epic. take the key from that and put it in the above jql
currently i am trying to find out this one
- how can I view all issues NOT assigned to ANY epic?
stay tuned
here we go:
project = <your_project_name> AND "Epic Link" is EMPTY
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.
For me the "basic" query builder refused to work but writing the JQL by hand worked like charm.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So I recently tried to create a filter, "epic link" = CS-27
This filter showed me no issues.
This is in spite of that fact that the Epic CS-27 totally exists in my project (I created it) and it has a bunch of child issues (I created those, too). What am I doing incorrectly?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is all great information but I'm trying to list the labels within an Epic Link. I have a filter for all Epics and Stories which result in a list of Epic Links. I now what to go into each Epic Link to list the labels within the Epic Link.
Any thoughts. I'm open to anything.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about this query: "Epic Link" = ABC-12345 ORDER BY labels ASC, created DESC
This should list all issues within the specific epic and order by labels.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create a filter for your Epic by saving the query (e.g Labels = "abc") for Epic
Give a name for the filter (e.g - "My epic")
Then to search for all the issues in the filter, use the following query:
issuefunction in issuesInEpics("Filter = 'My epic'")
Remember the ' and " in the query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issuefunction in issuesInEpics("Filter = 'My epic'") worked for listing all the issues within an epic, but how can I see only specific bugs (open, unassigned...)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what about using Epic Theme ?
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.