JQL Help: pulling issues updated by me during a specific week

Hazel Elgart May 30, 2013

I'm trying to get a list of issues that I interacted with during a specific week.

2 answers

1 accepted

0 votes
Answer accepted
Bhushan Nagaraj
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.
May 31, 2013

Hi Hazel,

What you need is the BY operator but unfortunately, it cannot be used with "UPDATED". You can only use it on fields like status, resolution, etc.

So you are limited to using UPDATED like

updated after "date" and before "date"

OR

updated during ("date1,"date2")

But you can add fields like assignee, reporter, voters in, watchers in, etc.

But you cannot use Updated and By together in a single query

Refer

https://confluence.atlassian.com/display/JIRA/Advanced+Searching

Cheers

Bhushan

2 votes
Renjith Pillai
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.
May 31, 2013

And if you always update status, you can use something similar to

status changed by 'username' during ("2013/03/09","2013/03/10")

Or if you just need to see what you were working (rather than a list), look at activity stream

Suggest an answer

Log in or Sign up to answer