Need to create quick filter for all my backlogs with respective type like defect/story/fix?

Siva_Musuluri January 5, 2020

Hi All,

Need your help with the below JQL query, i am trying to fetch all of my back logs with respective to type (Like Defect/story/fix...)

project = AONE AND sprint IS EMPTY OR sprint IN closedSprints() AND sprint NOT IN (openSprints(), futureSprints()) AND type = Defect AND status != Done

Thanks in advance,

Siva

 

1 answer

1 accepted

0 votes
Answer accepted
Milan Chheda [INFOSYSTA]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 5, 2020

Can you try this:

project = AONE AND type = Defect AND status != Done AND (Sprint is EMPTY OR Sprint not in openSprints())
Siva_Musuluri January 5, 2020

Bingo, thank you so much for your quick help Milan :)

Suggest an answer

Log in or Sign up to answer