I would like to query for tickets where the user has edited a field, changed the status or added a comment inside the last 2 days.
Is this possible? Can I query for a user's name inside an issues activity list and limit by a certain period?
If its possible please add an example query.
You won't find all of this as part of native JQL, you'll either have write your own JQL functions or could try a SQL query and get some information
here's an example query which would cover issue changed by a named user after a given date
SELECT DISTINCT(j.id) FROM jiraissue j, changegroup g WHERE j.id = g.issueid AND g.author = '<user name>' AND g.created > '<date>';
I assume the SQL is still valid with the current schema.
Give the script runner plugin a look as well.
Looks like the link is broken, I get `Page Not Found`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what about sth. like
updated >= startOfDay(-2d)
Returs the issues that have been updated during the last 2 days.
Cheers Christian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's good but only getspart of the query, it could be updated by anyone. You can use the "changed" keyword for status to make sure it's changed by the right person but not for comment. Depending onthe named field you *might* be able to sue changed but it's a short list of supported fields.
You could always use the script runner plugin to write a custom JQL function
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.