Hi All, I want to search for all issues of type Requirement (a custom issue type that we created) that does not have at least one link (of any type) to an Issue of type Story or Task. Thanks.
Hi,
With standard JQL, you can only get a list of issues with links and export them to Excel for further processing. This works if you want to do a one-off analysis.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service:
After you install the app, you can simply search:
type=Requirement and linkedIssueType not in (Story, Task)
Check out the documentation to learn more.
I hope this helps!
Daniel
Thanks, this seems like a great solution. I have to reach out to our admins for install and procurement type guidance.
and yes, right now, I am exporting for one off analysis and even there, the approach is not that friendly as the export routine just dumps all links in multiple columns without indicating the issue type (at least that's what I think). This makes it very hard to figure out if the requirement is linked with a story and/or task or just with another requirement.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hopefully, it solves your problem. You can always contact our support and we can help with specific requirements and queries.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ashar Malik ,
with default jira settings it's not possible.
If you look into above "IssueLinkType" not allowing "is" or "is Not" are allowed.
If you have script runner there is a chance: by executing the following JQL
issuetype = X and issueFunction not in hasLinks()
Thanks,
Kagithala Babu Anvesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Kagithala, I am not familiar with script runner. Can you please elaborate?
Regards
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.