Is there a querry I can write that will keep a running tab of all issues that I have viewed over a daily time period? I understand I can do this for issues updated, which is what I might have to do, but I'd really like to be able to look at this querry so that I can easily pull something up from earlier in the day instead of having to try to look for it again.
The following JQL will return your viewed issues since the start of the day, with the most currently viewed issue at the top:
lastViewed >= startOfDay() order by lastViewed
You can also check the documentation for this field (section "Last viewed" on the page).
Alternatively, you can see your recently viewed issues in the "Your work" tab, accessible from the main navigation of Jira at the top.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.