We want to look for epics which have open Stories. In the moment I can filter for closed Epics which have open linked issues (which includes also tasks, tests etc.)
But is there a possibility to make the search finer and only look for stories - so the filter shows no closed epics with open tests, tasks etc.
The momentary query looks like this:
Project = XY AND Issuetype = epic AND Status = closed AND issueFunction in linkedissueOf("status not in (closed, resolved)", "has epic")
Thanks a lot for your help.
Hi @Josef M_
This should be feasible by adding "and type = story"
Project = XY AND Issuetype = epic AND Status = closed AND issueFunction in linkedissueOf("status not in (closed, resolved) and type =story", "has epic")
Let me know if this fulfils your requirement
@Marc - DevoteamThank you so much - easy as a charm.
I did not know that you can put another query inside the "" directly - I always tried to put linkedissueOf("status not in (closed, resolved)", "type =story", "has epic") and that did not work at all.
Tahnk you very much again - made my weekend! :-)
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.