Hi, I'm looking for an jql for the below query:
* All the linkedissue or epic child issues wherein the epic name matches 'test'.
Ex. epic 1 "testing test": st1,st2,st3,st4
epic 2 "test": st5,st7,st6
epic 3 "ttt" :st33,st55
then the result should be all the story of epic 1 and epic 2.
Note: no addon installed.
As you're on Jira Cloud, the correct answer is to get an app that provides JQL extensions you're looking for.
With standard JQL, you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. If your use case is more dynamic than that, look beyond standard Jira.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service JQL Search Extensions
You can use this query to find all your linked issues or epic child issues wherein the epic name matches 'test'
issue in linkedIssuesOfQuery("type=Epic and text ~ test") or issue in childrenOfEpicsInQuery("text ~ test")
Check out the documentation for more examples.
I hope this helps!
Maurício
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.