Is there anyway to get a Jira report of Link Types per issue?
We need to find out which are commonly used, never used, and the different types
Any known DB query, JQL or Plugin can do all of the above?
Hello Ken,
The data is stored on the table issuelink. Within this table, it has a unique ID, link type, sournce and destination issue ID.
By default, JIRA has the following Issue Link Type: Block, Clone, Duplicate, and Relates. These Issue links have the following type ID:
10000 = blocks
10001 = clones
10002 = duplicates
10003 = relates
I think the best way to count the number of Issue Links that are being used is to apply the Count SQL function for each Issue Link Type.
For example,
SELECT COUNT(linktype) FROM issuelink where linktype = 10002;
Hope this helps.
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.