Hi All, I'm trying to write a JQL filter to only show me issues in a project that block other issues however when I run the query ...
project = XX AND resolution = Unresolved AND Flagged = Impediment AND issueLinkType = "blocks" ORDER BY priority DESC
...I also get issues back that are not blockers, but are blocked by other issues. Can anyone explain why?
The problem is that issueLinkType supports both inward/outward directional names (blocks, is blocked by) and the link type name (Blocks). This is a problem because JQL is not case sensitive. So if you want to search for "blocks" and not "is blocked by", you can't do that. This is a serious limitation because you can't rename the Blocks link type in Jira Cloud, Jira will just make a new Blocks link type and you will have two directional link type options of blocks/is blocked by in Jira.
See also:
Hi Chris,
I think I understand the confusion here. The issueLinkType is a relatively new JQL function, only available since Jira 8.0.0. This will return to us any issue that has a link of that type. However it does not tell us anything more about the linked issue itself.
The only reason I can think of as to why you might get JQL results for this query that do not appear to actually have a 'blocks' type link, is that your account in Jira does not have permissions to see the issue that this issue is linked to.
When that happens, your account won't see the link itself, but the issue still does have at least one link of that type to another issue. This could be as simple as lacking the Browse permission in that other project, or it could be more complex and be restricted by a security scheme, in which case you might have the project permissions, but lack the security level needed to see that linked issue. Either way, it is possible that your JQL query can return issues that appear to you to have no such links of that type.
As for how you figure out what that issue might be, well that gets harder to do. If you are not a Jira admin, I would recommend reaching out to your Jira admin to see if perhaps they get back some more details about the link type on that issue. Then again, they might not want to reveal that data to you, but they could likely confirm that this is the situation at least.
I hope that helps to explain this behavior. Please let me know if you have any concerns about this.
Andy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@chris I tested your query and it worked fine and only returned those issues which blocking other issues.
Try to index your jira
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use something like this
project = XX and resolution = Unresolved AND Flagged = Impediment and issueFunction in hasLinks(blocks)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately this exact syntax is applicable only for SR
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.