You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
JQL, to get the issues of a project for which Links is Empty OR they are not linked to any other issues.
Tried the above JQL but still i am getting the Linked issues, the column Links is still showing issues linked to i
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the below query:
project = <Project_name> AND issueLinkType is EMPTY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried the above JQL but still i am getting the Linked issues, the column Links is still showing issues linked to i
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rag,
I tested "issueLinkType is EMPTY" and I can see Subtask are being included in the result.
If you would like to exclude Subtask from the result, you can use the following JQL:
issueLinkType is EMPTY and issuetype not in subtaskIssueTypes()
If you are still getting results that include linked issues, please provide some samples for troubleshooting.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @mogavenasan
I tried the same JQL as you mentioned above.
But here the Linked issues are not subtasks, there are linked to other projects in the same instance.
After using the JQL, we can see the linked issues in the Links Column.
Please have a look of the screenshot, my idea is to get tickets of project "A" for which they are not linked to issues in any other project B, C, D of the same instance
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.
Hi @Rag,
I just did some reading on "issueLinkType" - it looks like it's quite buggy. You will need to use the workaround from JRACLOUD-73640.
I'm experiencing the same behaviour as you as well. I am able to reproduce it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mahesh,
Apart from the bug which mentioned on previous comments, you can use JQL below if you have "Script Runner for Jira" plugin on your instance;
issueFunction not in hasLinks()
Best Regards,
Burak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.