Hi all,
I need to create two filters for my tickets.
1) I need to bring me up all the incidents that don't have linked a problem
2) All the incidents that don't have a confluence page
I have tried the following for confluence page:
issuetype = Incident AND priority in (Critical, Major, Moderate) AND created >= -10d AND assignee = currentUser() AND issueFunction not in linkedIssuesOfRemote("application name", Confluence) ORDER BY updated
but it didn't work. Any idea??
Hi Valantis
1. you need to find the link type between your problem and incident and then use JQL like
project = ATLAS AND issuetype = Story and issueFunction in hasLinkType("Relates"), where Relates is the link type
2. You may need to use a plugin for it, refer to https://www.j-tricks.com/jqlt-links-functions.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.