You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
we have ticket type in JIRA called "incident" with an option to link it to another ticket type called "improvement" .
The link type is "relates to"
How can i search for "incident" tickets that does not have linked "improvement" to it ?
i am trying to use "Issues" --> "Filters" but cant find the correct syntax for my needs.
Oren
It's easy if you have the "script runner" plugin installed -
type = incident and issueFunction not in linkedIssuesOf("type=improvement","relates to")
Just a head's up as you haven't explicitly called out whether you're on server or cloud that although you can install Scriptrunner for cloud, the additional JQL only works on server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With script runner on JIRA cloud there is a new feature JQL Keywords.
You have to synchronise issues and then you can user in advanced JQL the keyword : numberOfLinks
project = PRJ AND issuetype = Type AND numberOfLinks = 0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, the title says "no linked" issues, which ideally means that I want to find issues that do not have anything linked to them. At least, that is what I came looking for. If someone else is looking for the same, here is the solution for it:
project = XYZ AND issueFunction not in hasLinks()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Currently it is not possible. Check this post for some alternatives and additional information:
https://answers.atlassian.com/questions/166537
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.