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
I am trying to create a filter to view all Tickets where the issueLinkType is Empty and not having any luck.
I know I can get a list of tickets with that value filled out using this:
issuetype = Ticket AND issueLinkType = "related Story"
However, I need to reverse. Any help would be appreciated! Thanks!
I figured it out!
issuetype = Ticket AND (issueLinkType != "related story") works! Thanks!!
Hi @inahury1 and welcome to the Atlassian Community!
To get the issues that do not have linked issues, have you tried:
issueLinkType IS EMPTY
The reverse of what you have would be:
issuetype = Ticket AND issueLinkType != "related Story"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, Jira says that "is EMPTY" isn't supported by issueLinkType.
Thanks though!
:(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@inahury1 have you tried:
issuetype = Ticket AND issueLinkType != "related Story"
That will give you the issues that do not meet your link type. You could also try:
issueLinkType NOT IN ("related Story", "other linktype")
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.