I know this exists to find issues that are linked to a specific issue
issue in linkedIssues(issueKey,linkType)
However, I want to find all issues linked to a specific type, specifically story items.
Ideally i would be looking for something like this (if it exists):
issue in linkedIssueType("story")
Hopefully this makes sense. Thanks in advance.
Hello Aaron,
Unfortunately, JIRA does not have a JQL parameter to return all issues which have linked issues from a determined issue type, if I have properly understood your request.
This kind of "sub-filter" where you will search for issues based in the fields of linked issues can only be achieved in JIRA Cloud by using a plugin, like JQL Search Extensions for JIRA.
The mentioned plugin provides the parameters linksQuery and linkedByQuery, that you can use to return the information you want:
linksQuery = "issuetype = story"
Let me know if this information helps.
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.