In our company, we have three projects, let's assume they are named OCT, TML and AFP. I work in the TML project, and would like to do two things:
Using JQL, I can easily use the following queries:
project = "TML" AND issueLinkType = blocks
project = "TML" AND issueLinkType = "is blocked by"
but then the majority of stories in the list is of type TML blocks TML, or TML blocked by TML.
How can I filter out the issues/stories where we are blocking or are blocked by a DIFFERENT project only??
Hi @Matthis Thorade ,
This kind of filtering is not possible in jira as of now. Instead these are some plugin which will help you achieve this
Hope this helps.
Here's a link to similar ticket : https://community.atlassian.com/t5/Jira-Core-questions/Query-to-find-jira-issues-in-one-project-that-are-linked-to/qaq-p/1332315
Regards,
Kevin.
Thanks. This is a pity, I cannot buy any apps/extensions. This seems quite basic functionality to me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not certain if this would be what you're looking for but I would try it like below
issueLinkType in (blocks, "is blocked by") AND NOT (project = TML AND issueLinkType in (blocks, "is blocked by"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Prince Nyeche I guess this will list all the linked issues in other projects, not the issues in the specific project which has only linked issues with other projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, I thought as much.
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.