what JQL expression do I use to search for the newest issues assignee to me?

viniciussilvaahgora August 13, 2015

I need to show in a dashboard the newest issues that was assignee to me. I made a filter, but it return in the frist and secund places issues that are old than the third and Fourth place. here is the jql that I made:

" assignee = USER.JIRA AND status not in (STATUSes THAT DON'T matter) ORDER BY updated DESC "

 

Thanks!

2 answers

2 votes
GabrielleJ
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.
August 13, 2015

Change the "UPDATED" to "CREATED"

1 vote
Ignacio Pulgar
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.
August 13, 2015

Besides the change proposed by Gabrielle, I'd suggest changing 

status not in (STATUSes THAT DON'T matter)

with

statusCategory != Done

That change will probably match your needs provided the statuses you are using were well categorised- and make your JQL query more readable and easier to maintain.

Suggest an answer

Log in or Sign up to answer