Show All Issues You Watch – Jira Tutorial 2021
Follow the steps below to Show All Issues You Watch
Select a Project > Click on “Issues” > Click on “Advance Search
Query For All Different Projects:
watcher = currentUser()
To order the Issues:
watcher = currentUser() ORDER BY created DESC/ASC
To order the Issues of a specific project:
watcher = currentUser() AND project = “ProjectName” ORDER BY created DESC/ASC