The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

What is the query to see all the jiras I updated today?

Tom Smith
February 1, 2022

I want to see all the jiras I updated today.  I think I should be able to use the updatedDate field but am having trouble with the format.

 

3 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
Answer accepted
Ankit Srivastava
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 Champions.
February 1, 2022

Hi @Tom Smith ,

You may use the below JQL:

assignee = "your name " and updated >= startOfDay()

Hope this will help.

Regards,
Ankit Srivastava

Tom Smith
February 1, 2022

Thanks.  I am not the assignee.  Is there an updater field?

1 vote
Mark Segall
Community Champion
February 1, 2022

Hi @Tom Smith and welcome to the community!  You should be able to get the job done with this:

updated >= startOfDay()
Tom Smith
February 1, 2022

Thanks!

0 votes
Satya Prakash Pamarty
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 30, 2024

Hi @Tom Smith, you may use either of the following:


"Last Updated By" = currentUser() AND updated >= startOfDay()

 

 "Last Updated By" = tsmith AND updated >= startOfDay()