I have issues in Jira with an Epic Link called "XYZ :: Continuous Delivery", across multiple projects. The XYZ is one word that is different in the Epic Link in every project. For me, to be able to report on all such issues (together, all projects combined) on a Jira dashboard using Rich Filter Gadgets, and as one metric, how do I write the JQL query for it in the Smart Filters section? I have tried using below scripts but it isn't working. The operator '~' is not supported by the 'Epic Link' field. I am unaware of the operators supported by the 'Epic Link' field. Thank you in advance for your support!
"Epic Link" ~ "Continuous"
"Epic Link" ~ "Continuous Delivery"
"Epic Link" ~ "Continuous*"
"Epic Link" ~ "Continuous*"
"Epic Link" CONTAINS "Continuous*"
"Epic Link" CONTAINS "Continuous Delivery"
":: Continuous Delivery" IS "Epic Link"
":: Continuous Delivery" WAS "Epic Link"
"Continuous Delivery" IS "Epic Link"
"Continuous Delivery" WAS "Epic Link"
"Continuous Delivery" ~ "cf[12940]" ----> cf[12940] is Jira value of the field "Epic Link"
I have referred to the below documentation:
https://confluence.atlassian.com/jirasoftwareserver0713/search-syntax-for-text-fields-965542863.html
EPIC link us used for epic issue id, in your case you need to search by epic name not by epic link.
if you just want to search epics you can use following query
"Epic Name" ~ Continuous
Now it looks like you want to search issues in epic "continuous delivery" in this case you need to use a third party plugin like JQL Search Extensions for Jira & reports
Please install the plugin " JQL Search Extensions for Jira & reports" and then execute following query. It will return all issues part of the epic name "continous"
issue in allIssuesInEpic("'Epic Name'~ 'Continuous'")
This wil retrieve Epics having Continuous on their name, but AD is asking for a way to retrieve issues within those Epics.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi AD,
Sadly you cannot achieve the desired search using standard features on Jira since ~ operator cannot be used with the Epic Link field, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
issue
IN
issuesInEpics(
'"Epic Name" ~ "Continuous Delivery"')
References:
Hope this helps you to create awesome queries <3
Kind regards
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.