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")
Community moderators have prevented the ability to post new answers.
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,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.