Hi!
Could you, please clarify, what do you mean by "dependencies"? Is it linked issues or what?
This Q was asked by one of our users and user didn't mention if is for linked issues. However, what if it is for linked issues?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, @[deleted] thank you!
It's just hard to imagine what other 'dependencies' might be there :)
As for linked issues, you could try one of the following:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Our user would like a query to return all issues in the project that have a link "is blocked by".
What could be the JQL query for this?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have any solution, The jira version we are using is V7 .11.1 and when I run the query projects= <Projectname> AND issue in linkedissues("is blocked by") it throws me error that Issue 'is blocked by ' could not be found in function 'linkedissues'
We are also tried issue in haslinks("") which also didn't work and throws error "Unable to find JQL function 'haslinks()'"
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @[deleted]!
The "haslinks" function is not included in basic JQL functions. It's a part of the following marketplace app:
Script JQL Functions - Adaptavist ScriptRunner
If you want to use this function you'll need to have this app installed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
linkedissues("is blocked by") returns the error because the first param is the issue key and the second param is the issue link type which in you case is "is blcoked by". use it like this - issue in linkedIssues("issue-key","is blocked by').
More appropriately you can use this jql to search "is blocked by" issues : project="your_project_name" AND issueLinkType="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.
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.