Helllo,
I want to pull a timespent report for multiple epics (over 70+), and having trouble with the JQL query.
Any tips on how to efficiently group many epics together?
Hi Steve,
You can achieve storing a subquery using the JQL Search Extension plugin , once you create a subquery it can be saved in the JQL Subquery Section and then can be used from there in other complex queries , please refer to the documents it contains examples and other necessary information related to the usage of plugin you can use linkedBy in (Epic Name
)
What do these epics have in common?
JQL works well if there is a single attribute that can be found all the tickets that you are looking for. You may want to add the same label or component to each of these tickets to ensure you can easily query them.
Another tip that may help is to query based on update or create date. Something like this will show the issues created in the last 30 days.
issuetype = Epic AND created > startOfDay(-30d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have grouped all epics into one filter called "My Epic Filter". Do you know the JQL query to have all linked issues within the epics in my filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The only way that I know how to do this is to use the scriptrunner linkedIssuesOf function. It works like this:
issuefunction in linkedIssuesOf(SUBQUERY, "is Epic of")
You could also use this to do the same thing:
issueFunction in issuesInEpics(SUBQUERY)
The reverse of this function is:
issueFunction in epicsOf(SUBQUERY)
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.