(issueFunction in commented("by currentUser()") OR creator = currentUSer()) AND createdDate < endOfDay() AND createdDate >= startOfDay() ORDER BY created DESC
This JQL Code shows all Tickets that i commented today and were created on the same day..
But the code doesnt show tickets, that were created in the past and were commented today
Can anyone help me to change the code?
Hi @MuhAk90,
Welcome to the community!
You can try this if you are looking for tickets that you have commented AND created within the past 5 days including today:
(issueFunction in commented("by currentUser()") AND creator = currentUSer()) AND createdDate >= -5d ORDER BY created DESC
Or, try this if you are looking for tickets that you have commented OR created within the past 5 days including today:
(issueFunction in commented("by currentUser()") OR creator = currentUSer()) AND createdDate >= -5d ORDER BY created DESC
You can change the '5d' value to look for tickets commented/ created in the past number of days accordingly.
Hope this helps.
Thanks,
Vamsi
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.