Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JIRA On-Demand Querying by parent

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?

like image 220
Paul Fleming Avatar asked Sep 13 '13 08:09

Paul Fleming


People also ask

How to get all issues that have a parent in Jira?

If you have Portfolio for Jira installed, you will be able to use the Parent Link custom field against committed changes. To get all the issues that have a parent (in Portfolio for Jira context) that belong to the project with key IDP, run the following query: "Parent Link " in (" project = IDP")

How to search for issues in Jira using jql?

Basic JQL search is recommended if you have never used Jira Query Language and want a simple way to filter issues. It can be performed from the Issue Navigator. To access the Issue Navigator: From the application header, choose Issues > Search for Issues.You will see the following search bar with some drop-downs:

What are the most popular smart queries in Jira?

The most popular smart queries are: Basic JQL search is recommended if you have never used Jira Query Language and want a simple way to filter issues. It can be performed from the Issue Navigator.

What is the on-demand Jira demo?

This on-demand demo is an introduction into Jira Software. Get expert tips and best practices for getting started, nail the basics, and get your teams up and running quickly on Jira. We’ll cover project setup, the difference between Jira Software project types, and various features and integrations to set your teams up for success.


1 Answers

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.

like image 66
enterbios Avatar answered Oct 10 '22 16:10

enterbios