I would like to find all Epics or Stories that don't have any Linked Issues. Is that possible?
I've tried, but get the message. The field 'linkedIssue' does not support searching for EMPTY values.
You can try the following JQL:
project = "XXX" and issuetype in (Epic, Story) and issueLinkType is EMPTY
I hope it helps you.
Greetings
Hello @Paloma Fondon Araujo
I checked your query but issuelinktype does not support "is".
the reason could be that it is an exhaustive list of values for it and there is no value like empty, hence you dont get any.
Hope I am correct.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Steve Arrants & @Sudarshan
I have done the test in my environment and the JQL performs the filter correctly and finding those Epics and Stories that do not have any linked Issue, also "issuetypelinks" admits me "IS" value. Attached image:
I don't know if there is something that is not correct ...
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ahh that is good to know, Sorry.
But I dont get it, to me when I use IS it does not work. :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi again!!! :)
Could you try the following JQL?
project = "XXX" and issuetype in (Epic, Story) and issueLinkType = null
I've tried it and it works for me too...
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ahh ok ok, you are using Jira Cloud.
I checked in Server, so I suspect there could be some changes in the operators and maybe some upgrade in the functions.
Its totally correct :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Steve Arrants
try this JQL - to get the list of Stories which are not linked to any Epic.
project = <projectname> AND issuetype = Story AND "Epic Link" = EMPTY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That does help. I may be able to build on that. What I really need is to find all epics and all stories for a Sprint that don't have any issue links.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try this
project = <projectname> AND issuetype = Story AND "Epic Link" = EMPTY and Sprint in closedSprints()
If you want from a specific sprint then use Sprint = <sprint ID>
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.