Hi,
I've a structure where is displayed all epics with linked issues when fix/version is matching. Now I would like to limit issues in status "Cancelled" and "Rejected" to be visible in the structure. Structure is extended also with epics which has child issue.
project = PROJ AND issuetype = epic AND (issueFunction in epicsOf("project IN ('PROJ1','PROJ2', 'PROJ3') AND fixVersion in ('Release1', 'Release2')")
OR issueLinkType = "is parent of")
Regards, Taina
Hello @Taina Ronkainen
You can add a JQL-based Filter generator that removes all issues with unwanted statuses. if your goal is to specifically remove parent epics, then you can set the Filter to work on the 1 level of the structure - this way it will disregard the statuses of child issues.
Alternatively, you can change the original JQL query and add ...AND status in(cancelled, rejected) to it for adding the status-based condition to the scope of epics.
I hope this helps. If you need further assistance or if you have other questions about Structure, please reach out to us directly at our support portal.
Best regards,
Stepan
Tempo (the Structure app vendor)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.