I wanted to share a few queries I created for Atlassian JIRA, that help me to keep track of my activities (e.g. for a weekly report, or to keep track of issues I submitted to other developers) – maybe they are useful for you, too:
- “My issues reported last week”:
reporter = currentUser() AND createdDate >= startOfWeek(-1w) AND createdDate < startOfWeek() ORDER BY created DESC - “My issues resolved last week”:
assignee = currentUser() AND Status = Resolved AND updatedDate >= startOfWeek(-1w) - “Open issues reported by me”:
reporter = currentUser() AND assignee != currentUser() AND resolution = Unresolved ORDER BY createdDate DESC