jirajira-rest-apijira-pluginjqljira-rest-java-api

Write JQL to find an issue that has subissues


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


Solution

  • 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.