Help!!
I am looking for a JQL query where I find all stories that are linked to an Epic with a label HW.
in our example, this involves multiple stories and multiple Epic
Grtz. Eric
I’m Maurício, a support engineer at Digital Toucan and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it variable.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all your stories that are linked to an Epic with a label HW
issue in linkedIssuesOfQuery("type = epic and labels = HW") and type = Story
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
unfortunately, "plain" JQL isn't too great with hierarchies, so to the best of my knowledge, you'll need extra tooling to solve your use case.
A few directions forward:
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.
Just to expand on the latter, this is how this would look in the app that my team is working on, JXL for Jira; TLDR: You can simply load your relevant issues into a sheet, enable the default issue hierarchy (that's just one click), and then filter down to the epics that you care about:
Once you've narrowed down 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.
As said above, there are other apps that may help with that - so perhaps try a few and see which one works best for you!
Any questions just let me know,
Best,
Hannes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Eric Roetenberg
Hope you are doing well.
issuetype = Story AND parentEpic in (Enter the epic key like Epic key1, Epic key2) AND labels = "HW"
Hope this will help.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ankit,
I just want to see the stories that fall under an EPIC with a label HW without naming the EPIC link because it is variable
Grtz, Eric
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Eric Roetenberg ,
Please check the below link hope this will help if you have script runner:
https://www.adaptavist.com/blog/top-10-most-commonly-used-jira-query-language-functions#parentsOf
Hope this will help.
Thanks
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.
issuetype = Story AND "Epic Link" = <etner epic name here> AND labels = "HW"
replace <etner epic name here> with epic name
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Gopi,
I just want to see the stories that fall under an EPIC with a label HW without naming the EPIC link because it is variable
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.