Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello Experts,
I am trying to create a JQL query that will present me all stories and subtaks that are related to a specific Epic
When I create the following JQL Query : "Epic Link" = "epicname" I get only the stories, as the sub-tasks are not linked directly to the epic
Does anyone have a good idea how can I perform this query?
Thanks
Naama
"Epic Link" = "epicname" OR issueFunction in subtasksOf('"Epic Link" = "epicname"') worked for me given by Sana. Thanks
Thanks it worked for me also
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 Naama,
What you can do is to use the JQL Functions provided by Scriptrunner, then it will be a query that looks like this:
"Epic Link" = "epicname" OR issueFunction in subtasksOf('"Epic Link" = "epicname"')
This way you get both the stories and their sub-tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Epic Link" = "epicname" OR issueFunction in subtasksOf('"Epic Link" = "epicname"') worked for me given by Sana. Thanks..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Links Hierarchy allows to visualize it and export the Agile Hierarchy to Excel.
Just the same engine used to build the visual hierarchy is exposed as JQL function if you prefer this way...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @Sana Safai
Thank you for your reply ,
I have script runner installed,
But when I used the filter suggested , i got the following error:
"Unable to find JQL function 'subtasksOf("Epic Link" = "infr-126)'.
Can you please help me understand why?
Thanks you!
Naama
6")'."
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, do you have the issueFunction in part as well? If you do, then try reindexing and then try it again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also there is a " missing after infr-126
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sana Safai Thanks for your reply - I have reindexed JIRA - I have run the following query: "Epic Link" = "V-DCMA" OR issueFunction in subtasksOf('"Epic Link" = "V-DCMA"') - and got the following error: Unable to find JQL function 'subtasksOf("Epic Link" = "V-DCMA")'. Can you please help me understand why? Thanks Naama
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, just try to use the issuekey for the epic instead of V-DCMA, then it should work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sana Safai Thanks for your help! I have tried both ways: "Epic Link" = "V-DCMA" OR issueFunction in subtasksOf('"Epic Link" = "V-DCMA"') "Epic Link" = INFR-1266 OR issueFunction in subtasksOf('"Epic Link" = INFR-1266') and i get this error - do i need to install anything to have those jql functions (I do have script runner installed) Thanks Naama
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Almost there, try: "Epic Link" = INFR-1266 OR issueFunction in subtasksOf('"Epic Link" = "INFR-1266"')
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.