Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Help with filtering Tickets based on issueLinkType

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!

2 answers

1 accepted

0 votes
Answer accepted

I figured it out! 

issuetype = Ticket AND (issueLinkType != "related story") works! Thanks!!

0 votes
David Blank
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 20, 2023 • edited

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"

Unfortunately, Jira says that "is EMPTY" isn't supported by issueLinkType. 

Thanks though!

 

:(

David Blank
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 20, 2023

@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")

Suggest an answer

Log in or Sign up to answer