Is it possible to get a list with all issues without a linked issue inside?
Im using a separate project for all my software-requirments and ideas. Each issue in this project produces additional EPICs inside my other softwareprojects, so each idea causes an related epic.
Now i want to make sure, that every incoming idea has a related EPIC.
Thanks, Nils
Jira (Cloud) now supports this via:
project = xxx AND issueLinkType is EMPTY
Just perfect.. I was able to get he list of all issues which had no links.. thanks Daniel!
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.
Just did @Daniel Lowe !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I like this answer. What release of Jira supports this? I tried a JQL query with this phrase and it failed.
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.
This worked perfectly, thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
my message: The operator 'is' is not supported by the 'issueLinkType' field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried this
project = "xyz" AND IssueType= Story AND status in ("Ready for UAT","Done","Closed") AND Sprint in ("Sprint 1", "Sprint 2", "Sprint 3") AND issueLinkType != "Test" AND labels != NotRequired
It still brings up all the stories which has a Zephyr Test linked to it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Farzin Karthik I imagine that's because Zephyr Tests are treated differently to standard Jira issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If by *linked issue* you mean no related Epic then you can use the JQL
project = X and "Epic Link" is empty
Here project X can be your project having ideas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As of now, JIRA by default doesn't support it. But if you have script runner plugin installed then you can do it via the following JQL
project = X and issueFunction not in hasLinks()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do I have to restart something? I installed the trial of ScriptRunner, did the JQL you suggested and get
Field 'issueFunction' does not exist or you do not have permission to view it.
Running Jira Cloud. Is this restricted to Jira Server?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
NVM. found out that it's not working in Jira Cloud. Any idea how I can achieve this in Jira Cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With script runner on JIRA cloud there JQL Keywords feature.
You have to synchronise issues and then you can use in advanced JQL the keyword : numberOfLinks
project = PRJ AND issuetype = Type AND numberOfLinks = 0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same problem. I didn't exactly solve it (don't have script runner) but I needed to find all issues without a linked issue. For my purposes with a limited number of issues to filter against, I was able to add the linkedIssue column to the filter. Then it was relatively easy to scan through the results looking for ones without an IssueID in that column.
FYI, the use case here is that there is a project that professional services folks enter issues into. They are vetted there, and all the issues are maintained for tracking. When we decide to take action on one of those issues, it's assigned to a developer. We then create Product Development issue in another project and link them. I needed to find all issue assigned to me that didn't have something linked yet.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We can get the list of non-linked issues via CSV download
In the "Search issues" page, in the "Columns" drop-down, select "Linked Issues" option. Now download a CSV with only current fields.
In the downloaded file, use filters and select the "Blanks" option in all the columns of "Outward issue link".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying to write a query that is
Project = XXX and issuetype = EPIC and LinkedIssue is not a specific Issue key but I only get the ~ or ~! as options for the LinkedIssue. I was hoping for a not in selection.
Any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try with
project = XXX AND issueFunction in linkedIssuesOf("type =Epic")
if you have ScriptRunner (JSU)
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.