JIRA: Useful Filters

Work Log Per Week

worklogAuthor = <Your Username> AND worklogDate >= startOfWeek() AND worklogDate <= endOfWeek()

Work Log Last Two Weeks

worklogAuthor = <Your Username> AND worklogDate >= startOfDay(-14d) AND worklogDate <= endOfDay()

All Tickets Where You Are the Assignee

assignee WAS currentUser()

All Defects Created Daily

issuetype in (Defect) AND “Group ID” IS NOT EMPTY AND “Environment” in (Production) AND createDate >= startOfDay(-1d)

Your Open Issues

assignee = currentUser() AND resolution = Unresolved order by updated DESC

Issued Viewed Currently

issuekey IN issueHistory() ORDER BY lastViewed DESC

Share
Leave a comment