Q: “How can I find all the Jira tickets I touched in the last week?”
A: Three steps:
- Run a regular search in Jira.
- In the results screen, click Jira’s “Switch to JQL” link

- Once you’ve switched to JQL, run a query like the following:
key IN updatedBy(ezra, -7d) ORDER BY key DESC
- if your name isn’t Ezra, you probably want to modify the
ezrapart - if you want a timeframe other than the last 7 days, modify the
-7dargument
Q: “How can I find all the Jira tickets in the current sprint?”
A: sprint IN currentSprints()
If, like me, you save queries and you don’t wanna constantly update the query to say sprint = 'Sprint 2' or sprint = 'Bugfix Sprint' or whatever, then sprint IN currentSprints() is your huckleberry
