The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

issueFunction in hasLinks is not filtering on project

Aisha Apps
September 20, 2018

I am trying to find all issues in a particular project that have certain link states e.g "is depended on by". 

There are no errors thrown with the filter I made and I do get a large list of results but I seem to get everything in multiple projects that has the blocks and dependancy links rather than just everything under a specific project listed in the query. Is the syntax incorrect or is there a better way to do this? 

Thank you!

project = "XXX" AND issueFunction in hasLinks("is blocked by") OR issueFunction in hasLinks("required by") OR issueFunction in hasLinks("is depended on by")

Also tried:

project in ("XXX") AND issueFunction in hasLinks("is blocked by") OR issueFunction in hasLinks("required by") OR issueFunction in hasLinks("is depended on by")

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Elifcan Cakmak
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 Champions.
September 20, 2018

Hello,

Can you try like this:

project = "XXX" AND (issueFunction in hasLinks("is blocked by") OR issueFunction in hasLinks("required by") OR issueFunction in hasLinks("is depended on by"))

It should work.

Regards,