Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I want to produce an extract of linked issues, and want to show the inward/outward description related to each issue - is there a way to accomplish this?
We could get this directly from Jira's DB with something like the following
select concat(PS.pkey,'-',S.issuenum),ILT.outward,concat(PD.pkey,'-',D.issuenum) from issuelink IL
join issuelinktype ILT on ILT.id = IL.linktype
join jiraissue S on S.id = IL.source
join jiraissue D on D.id = IL.destination
join project PS on PS.id = S.project
join project PD on PD.id = S.project
Thanks Marcus.
As I'm new (relatively) to using JIRA for informational reporting within confluence, you would execute this SQL via a scripting tool ?
Tx, Pam
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.