Hi
Currently I am able to filter out linked issues of one particular issuekey. below is the query
issuefunction in linkedissuesof("issuekey = XYZ") and summary ~ ABC and type = story
I am saving it and then using this filter in my other queries.
Challenge I am facings is that I want to filter out linked issues for multiple issuekeys and not just one. I am not able to use that within this query as such by trying issuekey in(..)
How can it be achieved?
Given you're using:
issuefunction in linkedissuesof("issuekey = XYZ")
^ I'm going to assume you have Script Runner already, and it should work to use:
issuefunction in linkedissuesof("key in (XYZ,ABC,123,456)")
^ Can you advise us what happens when you try this?
Ste
Hi Leena Sharma,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
Search for all issues linked to any of the following issues: EMEA-415, LATAM-1086 or SUPPORT-798
issue IN linkedIssuesOf("key IN (EMEA-415, LATAM-1086, SUPPORT-798)")
Using this app you can also query other issues relations, check:
References:
Hope this helps you to create awesome queries <3
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Leena Sharma ,
With the help of scripted JQL from Script runner for Jira you will be get the linked issues for multiple issues.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_linkedissuesof
Thanks,
Avinash
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.