Hi all,
In JIRA 5.1.3 /GH 6.2.4.1, I would like to find "all stories linked to the epics assigned to me" or as another example "all stories linked to the epics within a component".
In this scenario, we are using the GH provided Epic Link field and not the standard jira linked issues functionality.
I started writing this out as:
project = code AND "Epic Link" in (project = code AND type = epic and assignee=currentuser())
This fails with the following error:
Error in the JQL Query: Expecting ',' or ')' but got '='. (line 1, character 44)
Looking at the Epic Link field, it happily takes the IN operator and am able to manually build a set of epics or use a function like votedIssues() or watchedIssues() but no way to pass another query or filter.
Has anyone solved this in JQL or with add-ons?
Try reading Nicholas Muldoon's post here...http://www.nicholasmuldoon.com/2013/06/using-the-epic-workflow-in-greenhopper/
For a first step, you can get the stories of unresolved epics with:
issueFunction in linkedIssuesOf("issuetype = Epic and resolution is empty", "is epic of")
(linkedIssuesOf docs).
Thanks Jamie!
I wasn't aware of the "is epic of" relationship type and figured i was just limited to the jira relationships, causes, blocks etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, that worked for me. Now, 7 years later, you can also use the more specialized issuesInEpics function of ScriptRunner. See my answer below for details.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
First you create a filter for your epics as desired --> My Epic Filter
You can then use the issuefunction. Because the filter contains whitespace, you have to quote the name and because it is used within double quotes you have to use single quotes.
issueFunction in linkedIssuesOf("filter = 'My Epic Filter'", "is epic of") OR filter = "My Epic Filter"
With the OR-part you will get the epics as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This works for me too! Thanks !!
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.
The way i'm doing this for now is to manually build out the set for EPIC LINK to accept:
project = code AND type=story AND "Epic Link" in (CP-123, CP-1234, CP-12345)
Depending on how often we have to do this, I may put together an excel workbook that gets the list of issue ids via the REST ws but I expect that the copy & paste approach will win out for a while.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I needed an export of all the stories and tasks in a epic, and this was perfect, and exactly what i was looking for!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Epic Link" takes a list of values. It can't take another JQL.
You could try:
project = GreenHopper AND "Epic Link" = GHS-9520 and issuetype = "Stories" and assignee=currentuser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Timothy,
I see that "Epic Link" will take a single issue or a list of issues but i'm looking for a way to generate that list based on a filter, JQL or function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have ScriptRunner 5.6 installed, you can use issuesInEpics like this:
project = code AND issueFunction in issuesInEpics("project = code and assignee=currentuser()")
issuesInEpics is slightly more convenient than the more generic "issueFunction in linkedIssues".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Regrettably, the "out of the box" JIRA doesn't support this functionality. If you want to find all items belonging to Epics pulled back from a query, you will need a plugin.
As the ScriptRunner plugin adds over 35% to the cost of a basic JIRA cloud, we use JQL Search Extensions for JIRA instead - it's about 1/3 the price of ScriptRunner.
They have examples showing how to do the kind of thing you ask here:
In particular, see the "issuesFromEpicsInQuery" documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked for me:
issueFunction in linkedIssuesOf("issuetype = Epic and component IN (MyComponent)", "is epic of")
...now if I can just figure out how to pull in the subtasks for the stories in those epics...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Addendum:
This would be similar to the view that one gets in the Agile Board, Plan View when clicking an Epic Name.
I am trying to get the items that are shown in the Sprints or Backlog in JQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.