JIRA On-Demand Querying by parent
Asked Answered
B

3

8

I'm using the On Demand version of Jira. I need a filter that will show me:

All issues within a particular epic AND all sub tasks of those issues.

So effectively:

  • Epic
    • Story 1
      • Sub Task 1
      • Sub Task 2
    • Defect 1
    • Story 2
      • Sub Task 3
      • Sub Task 4
      • Defect 2

Plugins are not an option here as I'm using the OnDemand version. Any suggestions on how I can achieve the above without having to link all sub tasks to the epic?

Buehrer answered 13/9, 2013 at 8:8 Comment(1)
I could publish my atlassian-connect addon (which you could install on the on-demand instance) for such filtering. Will do it if this comment gets 10 useful flags (to be sure someone else also needs it)Hadik
R
1

Question is quite old but since 13 January 2017 Jira Cloud (previously OnDemand) supports a parentEpic:

parentEpic = Epic-1

this will find the epic itself, with all the stories/tasks in the epic and their sub-tasks, it was previously not possible without installing add-ons.

Rink answered 27/8, 2018 at 11:22 Comment(0)
F
0

With JIRA OnDemand, you are severely limited in the kinds of queries you can run. OnDemand and self-hosted actually have same default JQL features, but the self-hosted does allow for a ton of add-ons for JQL.

I've solved this problem personally by first using the JIRA CLI to get a dump of all the issues in a project into a local CSV. Then, I use csvkit to make tables/CSV that I actually need (i.e. All descendant issues of a parent epic).

Fleeta answered 27/7, 2016 at 18:35 Comment(0)
I
-1

I think following query will help you to get expecting result:

project = project name AND "Epic Link" = 'epic name'..
Insurable answered 17/8, 2015 at 9:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.