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.
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.
I just discovered something like this:
project = xxxx AND issueLinkType not in (tests)
This way you can search for specific relations. the parameter is EMPTY does not work in my version.
Greetings
Jürgen
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 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.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.