To find all the issues with linked issues in a Jira project, you can use the following JQL query:
project = "YOUR_PROJECT_KEY" AND issueLinkType IS NOT EMPTY
If you want to filter by specific link types (like "blocks," "is blocked by," "relates to"), you can include the issueLinkType
with a specific value, like:
project = "YOUR_PROJECT_KEY" AND issueLinkType = "blocks"
Hi @Manoj Gangwar thanks for your reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In this scenario, I would you to to follow the suggestion provided by Charlie.
key IN (ISSUE-1, ISSUE-2, ISSUE-3, ...) AND statusCategory = Done
If there are too many linked issues to manually input then use the addons like Scriptrunner or JQL search extension.
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.
By that you mean all the items having any issue link in a certain project?
By default Jira does not have many JQL functions to query for linked issues.
You can do:
More on https://support.atlassian.com/jira-service-management-cloud/docs/jql-functions/#linkedissue
I usually use scriptrunner which provides this function:
project = ABC and issuefunction in haslinks()
UPDATE:
nevermind my answer. Manoj provided a better solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you're open to solutions from the Atlassian Marketplace, you may want to have a look at the app that my team and I are working on: JXL for Jira.
JXL is a full-fledged spreadsheet/table view for your issues that allows viewing, inline-editing, sorting, and filtering by all your issue fields, much like you’d do in e.g. Excel or Google Sheets. It also comes with a number of advanced features, including support for (configurable) issue hierarchies. These issue hierarchies can be based on Jira's built-in parent/child relationships (like task/sub-task, or epic/story), and/or based on issue links of configurable issue link types. Once you've set up your hierarchy, you can use JXL's various search and filtering techniques to narrow down to the issues you're interested in, like so:
There's a few things going on here - happy to elaborate if that's a direction that might be of interest to you. I should also add that issue hierarchies also play well with JXL's other advanced features, such as sum-ups, conditional formatting, or inline bulk editing via copy/paste.
Any questions just let me know,
Best,
Hannes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Asmath,
If you have either of the ScriptRunner for Jira Cloud or the Enhanced Search for Jira plugins installed, then the linkedIssuesOf() JQL function can help to achieve your requirement.
Regards,
Kristian
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.