You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'd like to get a list of tickets that I worked on (possibly constrained by date). And when I say worked on, I mean anything having to do with a ticket - adding a comment, moving it to the next stage in the workflow, changing the story points, whatever.
And I'd like the tickets sorted by the date that I affected the ticket. Is this possible?
You'd have to construct the JQL according to your need.
For e.g. the following would return all the issue:
- you commented
- changed status of
- was ever the assignee
- was ever the reporter
- or ever added a worklog on an issue.
issueFunction in commented('by tbas') OR status changed BY tbas OR assignee was in (tbas) OR reporter was in (tbas) OR worklogAuthor in (tbas)
Your answer lead to towards the answer:
assignee was in (currentuser()) OR status changed by currentuser() OR reporter was in (currentuser()) ORDER BY updated DESC
Jira didn't know anything about `worklogAuthor` and it complained that ScriptRunner wasn't licensed when I attempted to run `
issueFunction in commented('by tbas')
`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
worklogAuthor should work since that field is provided by default in JIRA.
worklogAuthor in (currentUser())
and to get issues which a user has commented on is not a default JIRA functionality, you'd have to access it via ScriptRunner plugin.
You can generate a trail license and try it out.
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.
It is really too bad this is a query and not an interface like in TFS
Using Jira should not be extra work.
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.
Honestly, if I can't easily filter any of my data, with a few clicks, using filtering UI, then the software hasn't properly solved filtering. 😬
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The answer given by Robert 'assignee was in (currentuser()) OR status changed by currentuser() OR reporter was in (currentuser()) ORDER BY updated DESC' worked perfect for me. This is what i expected and i got the complete report which i use for every month status. Thank you Robert
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.