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")
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,
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.