If you can use Script Runner add-on, you can run this JQL:
issueFunction not in hasLinks()
This would return all issues without Linked Issues.
Hi Steven,
I'm just beginning using scriptrunner and your answer quite fit for my problems :)
Do you know how to filter some issue with no links to Yogi requirements in Confluence ?
The not in hasLinks filter all the links but the query with just the yogi requirements filter would be perfect !!
Thanks a lot for your help,
Best regards,
Antoine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Excellent. Thanks, Steven!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
You can use the JQL below to find issues without links;
issueFunction not in hasLinkType('Link Type 1') and issueFunction not in hasLinkType('Link Type n')You can get your types from "Issue Linking" page. You need to update your JQL when you change/add/delete your types.
Kind Regards.
Serhat Gokturk
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This only works if Scriptrunner is installed.
edit: I see Scriptrunner is indeed installed so this makes sense.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
You can use the solution described on jira query: issues with linked issues to find linked issues, and just run something like: !(query to filter issues that contains links)
I'm not sure if it works, it's just an idea.
Thanks and regards,
Paula Silveira
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Paula,
Unfortunately, there is no any argument to find those issues without links with your suggested way :) We can't find all issues with one single argument.
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.