Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Help in query

Valantis Stergiopoulos
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 17, 2018

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??

1 answer

0 votes
Daniel Deng
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 17, 2018

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

Suggest an answer

Log in or Sign up to answer