-2

JQL to check issues of type Fix that have non empty issue links. I need issues under the resolves as shown below in the following screenshot:

enter image description here

2 Answers2

1

If you have Scriptrunner installed on your Jira instance, you can use

issuetype = fix and issueFunction in hasLinks()

The hasLinks issue function allows you to specify the link type if you want to filter for specific links.

-1

use the following JQL:

issuelinktype = "resolves"