We need a filter to return issues that do not have a certain issue type linked as related. Right now, we are achieving this with the ScriptRunner Enhanced Search Jira add-on app, but we would love to be able to do this with the default search so we don't need the add-on.
Example JQL code from the ScriptRunner app:
issueFunction not in linkedIssuesOf(type = "Issue Type A", "relates to")
Hi @Moutsias, Peter , Can you try the following?
issueLinkType != "relates to" and issueLinkType is not empty
Thank you Jack. Is there a way to return issues that do not have a "relates to" link to a certain issue type?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
not out of the box.
you could find issues of a certain Issuetype that do not have a certain linktype. For example...
type = story and issuelinktype != "relates to"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.