When querying Jira by assignee, I want to see who made the last update.
I've been using this to query Jira by assignee, across projects:
jql=assignee=<the-assignee>+order+by+updated\&startAt=0\&maxResults=1\&expand=changelog
This gives me the last updated ticket assigned to assignee, and when that ticket was updated, but it doesn't tell me who did the update. In particular, I want to be able to check if assignee did the update or not.
In the Json output I don't see any fields seemingly related to this, so how can it be done?
Along with ScriptRunner plugin, we also use JQL Extension plugin which has 100+ JQL custom keywords for issues updates stack filtering. It has been useful so far for my team.
You could easily fetch info. of who has last updated the issue ticket.
lastUpdatedBy=
"jacknap"
I would suggest you can explore a lot more referring plugin documentation
You will use this JQL
lastUpdated("by my_username") AND updated >= -d ORDER BY updated DESC
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @PVS , thanks. How do you suggest I put that in the jql I wrote in OP? The following do not work (using curl):
jql=assignee=<the-assignee>+order+by+updated\&startAt=0\&maxResults=1\&expand=changelog\&lastUpdated("by <the-assignee>")
jql=assignee=<the-assignee>+order+by+updated\&startAt=0\&maxResults=1\&expand=changelog\&lastUpdated\("by <the-assignee>"\)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.