I have this link structure in JIRA: "Initiative" then "task" (or "Epic" then "task"). I would like to filter all unresolved issues in a particular Initiative.
I can get the unresolved direct children of the Initiative with this:
issueFunction in linkedIssuesOf("resolution is empty and issuekey=PM-20", "is Initiative parent of") and resolution is empty
but I'm not sure how to add in the children of any child epic(s). So far, using the Scriptrunner insert function wizard, I have this:
issueFunction in issuesInEpics(" issueFunction in linkedIssuesOf("issuekey= PM-20", "is Initiative parent of") and resolution is empty") and resolution is empty
The error I get is "Failed to get issues in epic". I don't have any experience with nested queries. Help..?
Doug
Thank you for the question.
If you are using Scriptrunner For Jira Cloud, we do not support running nested queries inside of the subqueries for JQL functions.
I can, however, confirm that this means that you will first to create a query to return the results for your enhanced search function and you will need to save this as its own filter.
You will then need to create a second query which calls this saved filter inside of the subquery for your enhanced search function in order to return all the issues in the Epics for the filer you saved previously.
For your reference, I can confirm that the JQL that you would use in the subquery to return the results of the filter is filter = <NameOfFilterHere>.
You will then be able to update the JQL for your second query to be similar to the below so that it returns the results of the first filter inside the subquery for the JQL function.
issueFunction in <JqlFunction>("filter = <NameOfFilterHere>")
I hope this information helps.
Thank you.
Kind Regards
Kate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kate,
Thank you! The issueFunction in <JqlFunction>("filter = <NameOfFilterHere>") approach worked
My final filter is the union of the two Scriptrunner filters: (filter = "PM-20 direct children" OR filter = "PM-20 epic children") AND resolution is EMPTY
:)
Regards,
Doug
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.