I am pulling in the parent initiatives that are closed which still have child issues which are not closed, I have this filter - issueFunction in portfolioParentsOf("status != Done") AND status = Done
However, I need to also pull in the child issues which aren't closed so I can identity the specific issues that need to be closed.
I don't know how to pull in the child issues that are still open.
Thanks!
Denise D.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't need to use "portfolio" so to speak, I can also use a different script-runner query but I am trying to pull the parent links (Initiatives) which are closed plus the children which are not closed into one query. The children would be epics from our various teams.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Denise DeCesare ,
Please mention the project name in your filter;
issueFunction in portfolioChildrenOf("Project = "ABC" AND status != Done") AND status = Done
For Example:
Filter 1 (Get Epics linked to parent Initiatives) - issueFunction in portfolioChildrenOf("project = ABC")
Filter 2 (Get Stories linked to those Epics) - issueFunction in linkedIssuesOfAll ("Filter 1")
Filter 3 (Get Sub-tasks linked to those Stories) - issueFunction in subtasksOf("Filter 2")
Filter 4 (Final) - issueFunction in linkedIssuesOfAll ("Filter 1") OR issueFunction in subtasksOf("Filter 2") ORDER BY Rank ASC
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.