Notes:
Hi Community,
Use case: Need to use native JQL to find issues in many Jira projects that "block" issues in One Jira project. For example: ProjectA has work that is being done in many other Jira projects. The team wants to find all the issues in the other projects where they "block" any issue in ProjectA and the status changed during yesterday and statuscategory is not done. Note: All the blocking issues are not a child of an issue in ProjectA.
I cannot figure out how to get the bolded part of the JQL. I tried to use linkedissue in (Project A), but that only works with a specific issuekey (projecta-123), not only the project key =projecta.
HELP Community!!
Thank you.
The built-in JQL features do not support that type of query.
As you note, this is possible when checking one issue at a time using the linkedIssues function. For example:
project != projectABCD
AND issueLinkType = "is blocked by"
AND issue IN linkedIssues("projectABCD-1")
ORDER BY Key ASC
As you note no funding for marketplace addons to perform this type of search for all issues in a project, the possible workarounds depend upon how frequently you need this type of query:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.