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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.