Need a JQL to get all the issues like tasks,sub tasks in Epic
You can just a run the CQL:
"Epic Link" = FOOBAR-123
It returns all issues in the epic FOOBAR-123.
Hello @Ankela Pavani
Welcome to the Atlassian community.
Are you using Jira Server or Jira Data Center?
What version of the product are you using? The version information can be found at the bottom of many screens, including the Dashboard screens.
Do you have access to any third party plugins that extend the search/filter capabilities of Jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Trudy Claspill ,
I'm using Jira server ,
Jira version is v9.4.7
Yes I have the filter capability of Jira.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not asking if you have access to the filtering capability.
I'm asking if any third party plugins (like ScriptRunner or JQL Tricks) have been added to your instance so that the filtering functionality has been extended with capabilities that are not part of the native Jira functionality.
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.
With only Jira Server and no third party plugins to extend the filtering capabilities, the only way to get child issues and their subtasks for an Epic is to first get the list of child stories:
"Epic Link" = <issue key for the Epic>
From those results, manually extract the list of issue keys.
Then you have to create another filter to retrieve the subtasks for all those issues:
Parent in (<comma separated list of Epic's child task issue keys>)
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.