You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi,
I'm using IssueType called Requirement in Jira and all my US's are linked to this requirement,
I'm want to get all the related linked issues to this requirements (succeeded) and also get the number of related issues and present it by any gadget I will found in Jira dashboard in a list view.
Requirement --> US --> Number of US
XXX-123 --> XXX-124 , XXX-125 --> 2
I apricate your help to help me to get the number of those US's
Thanks,
Elran
Hi @Miron Giladi Check if the solution below works for you
Trigger | Scheduled ![]() |
New Branch | Branch/Related issues Type of related issues : JQL JQL : use the JQL query as per your requirement |
Action |
Lookup issues
|
Action | Edit issues -> choose the field that we created in Step 1 "count"![]() Use the smart value as below {{lookupIssues.size}} |
project = projectname AND "count[Number]" is not EMPTY
All images are broken:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
They point to getsupport e.g. https://getsupport.atlassian.com/secure/attachment/6855924/6855924_image-2021-12-16-18-07-58-080.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Could you please re-upload the images ? they are not available anymore
thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if I understand you correctly the requirements and the other issues are perfectly linked and you already have a JQL query in place to find out what you need. However, you want to have a count (represented by a custom field?) in your issues that shows how many issues are linked to a specific requirement, represented in your example as XXX-111 - please confirm if this is correct.
If so ... and you have a scripting App in place you can use it likely to reach the goal.
In this example (here it is ScriptRunner) it comes quite close to your requirement I believe, worth having a look at:
https://library.adaptavist.com/entity/number-of-linked-alerts-itsm
For displaying on dashboards it will be a different thing, usually Gadgets do not offer number fields as a source for visualizing data. This part would likely need more inspection.
So far - is it what you are looking for? Please feel free to update us here if you find the time.
Regards,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vikrant,
Thanks for your replay.
to get all the linked issues, I already succeeded.
My problem is bigger than get all the issues and I will try to explain shortly.
I need to present all related issues to many requirements, for example in fix version X I have 40 requirements, so I want to see a list of those requirements with number of related issues to each requirement.
requirement
requirement XXX-111 --> 11 related issues
requirement XXX-222 --> 12 related issues
requirement XXX-333 --> 13 related issues
requirement XXX-444 --> 14 related issues
If you have any suggestion, I will be happy to hear :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Miron Giladi Try below query to get all linked issue of an issue :-
issue in linkedIssues("issuekey") . it gives the number of issues linked to a particular issue.
issue in linkedIssuesInFilter("10000")
If you have a script runner plugin installed , you can get better result based on issue type :-
For eg :- issueFunction in linkedIssuesOf("project=xyz", Blocks)
https://valiantys.com/en/blog/atlassian-administration/jql/
Thanks
VY
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.