I want to write a filter which helps me extract Jira requirements which don't have linked stories to it. Any pointers how I can do that?
Hi @Aneeka
Welcome to the community 🙂
issuetype = Story and "Epic Link" != EMPTY
If you are tracking the Requirements via Epic and you have stories linked to it.
The above JQL will return the stories which doesn't have the Epics
Let me know the exact requirement if it doesn't work
Thanks,
Pramodh
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.
A quick question @Pramodh M
while writing AND in filter
issuetype = requirement and( issueLinkType is not EMPTY and issuetype != story)
does it take precedence in evaluating expression from left to right or all the and expressions are evaluated at same time.
e.g.
A and B and C
A first then B then C
or
all in parallels.
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.
@Pramodh M what I am trying to ask is if there are multiple AND statements how are those evaluated.. See my last comment. Bracket part , I am clear.
Thanks
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.
issueLinkType is not EMPTY and issuetype != "Story" and issuetype = "requirement"
This is still returning stories in linked issues. Do you see why?
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.
Hi @Aneeka
If you are okay with just searching the issues which have empty links
go with this
issueLinkType is EMPTY and issuetype = "requirement"
For linked issues to be searched, it's something complex and might need add-on
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
nope. still the same . It is returning requirement which has story type in linked issue along with other issue type.
what I want is
project = x and type = requirment and linked issue type != story
Ideally your suggested query should work but it is not
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I searched with
project =xxxx AND type = Requirement AND issueLinkType != EMPTY AND issuetype != Story
result was - list of all issues with type requirement ,
when I open some of them , I get
in linked issue -
issues which are tagged as story and other issue like requirements, change request .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah for the linked issues of type Story we need to use Scriptrunner add-on or JQL for extensions
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.