I have a custom issue type (Data Load) and I have several Task issues related to it (Link relates to).
I want to get all the Data Load issues and all the "relates to" Task issues as a filter.
Note I have ScriptRunner at my disposal.
I see several JQL functions but not sure if any of them will work. I see how to find related issues to a specific issue key, but haven't seen how to pull more generically.
THANK YOU!
__PRESENT
Hello @Angie Affolter
You would need to use the linkedIssuesOf() function from Scriptrunner. Native Jira JQL capabilities can't meet the requirement.
issuetype = "Data Load" or issueFunction in linkedIssuesOf("issuetype=Data Load", "relates to")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.