JIRA On-Demand Querying from Parents

I am using the Jira version on request. I need a filter that will show me:

All questions within a certain epos And all the subtasks of these problems.

So effective:

  • Epic
    • Story 1
      • Goal 1
      • Goal 2
    • Defect 1
    • Story 2
      • Goal 3
      • Subtask 4
      • Defect 2

Plugins are not parameters here, since I am using the OnDemand version. Any suggestions on how I can achieve the above without linking all the subtasks to the epic?

+8
jira jql ondemand jira-ondemand
source share
3 answers

With JIRA OnDemand, you are very limited in the types of queries you can run. OnDemand and self-service actually have the same JQL functions by default, but self-service allows you to get a ton of add-ins for JQL.

I solved this problem personally, first using the JIRA CLI to get the dump of all the problems in the project into a local CSV, then I use csvkit to make the / CSV tables that I really need (i.e. all the problems of the descendants of the parent epic).

0
source share

You can achieve this by editing the jira note speed template present in the jira war.

Here is a link that may be helpful to you.

https://developer.atlassian.com/display/JIRADEV/Creating+a+Custom+Release+Notes+Template+Containing+Release+Comments#

-one
source share

I think the following query will help you get the expected result:

project = project name AND "Epic Link" = 'epic name'.. 
-one
source share

All Articles