I have 4 issue types there A,B,C,D . there is no direct relation between A and D but A to B, B to C and C to D is a relation. I need report for A details and how many D issues are linked to C, I need that count. Is it possible any plugin can please help me out for this.
Note: A,B,C are same project and D is Different project
Welcome to Atlassian community!!
By using JQL and along with some plugins we can achieve this.
with JQL:
To find all B issues linked with A: issue in linkedIssues("A- issue key", "link type A to B")
To find all C issues linked with B: issue in linkedIssues("B-issue key", "link type B to C")
To find all D issues linked with C: issue in linkedIssues("C-issue key", "link-type C to D")
Along with this we can achieve by using Plugin: ScriptRunner for Jira - https://marketplace.atlassian.com/apps/6820/scriptrunner-for-jira?hosting=cloud&tab=overview
Hi Srikanth
Thank you for your Answer.
I Got the above result, but I need report for "A issue type details and how many D issues are linked to C I need that count". How I get that report Please help me for this.
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.