Would appreciate if someone can guide me to create a JQL query to display all EPICs containing text "pdp' in their Summary and also bring in all the Child Tasks for these epics
You would need an app from the Marketplace in order to do this. I know that JQL Tricks, Enhanced Search can do this because they extend default JQL. You can also have a look at JXL, that app can also get you the result you are looking for.
I concur. Such a filter cannot be constructed with only native Jira filter capabilities.
Besides the apps that @Mikael Sandberg mentioned, another one that would work is Scriptrunner Enhanced Search which provides the issuesInEpics() function
Example:
issuetype=Epic and summary~"PDP" or issuefunction in issuesInEpics("issuetype=Epic and summary~'PDP'")
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.
Hi @Munir Patel,
unfortunately, this is trickier than one might think; as a hierarchical query, it would really require some kind of "join" or "subquery", which isn't available in plain Jira/JQL.
A few directions forward:
If you want to run your search dynamically, without manually "stitching" two queries together, you'll need extra tooling:
Hope this helps,
Best,
Hannes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
... and to expand on the last point, this is how this would look in the app that my team and I are working on: JXL for Jira. Put simply, you'd create a sheet with all issues that are potentially relevant to you, enable the default issue hierarchy (that's just one click), and then use JXL filtering capabilities to narrow down to the issues that you care about:
Once you have your list of issues, you can work on these directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
Any questions just let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Munir Patel
I'm Prosper, a Support Engineer at Appfire, and I'm here to assist you.
If you're open to a plugin suggestion, I recommend trying our app, JQL Search Extension for Jira.
You can use the following query to return epics summary containing the word "PDP" and their children
issue in childrenOfEpicsInQuery("text ~ 'PDP'") or issue in epicsOfChildrenInQuery("") and text ~ PDP
For more details on this query, you can refer to this resource or reach out to our support team. We're happy to help!
Best regards,
Prosper
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.
Spend the day sharpening your skills in Atlassian Cloud Organization Admin or Jira Administration, then take the exam onsite. Already ready? Take one - or more - of 12 different certification exams while you’re in Anaheim at Team' 25.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.