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

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 Leaders.
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()

 

Suggest an answer

Log in or Sign up to answer