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

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 Leaders.
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,

Suggest an answer

Log in or Sign up to answer