I want to know the Jquery code which can give me data updated in last 7 days.
Example:- If there is a field name- 'Severity' in Issue Type 'Bug' in JIRA. If any user updates the severity from 'High' to 'Medium' then i want to get such data using Jquery.
Which bugs are updated in last 7 days from High to Medium?
Please let me know if you can help.
If you just want to get the list of issues updated in the last 7 days that's pretty simple:
updatedDate >= endOfDay(-7)
That tracks any change to any issue field, status, comments...
For the other example you present is not that simple. There some operators like CHANGED or WAS that can search in the history of the issue but they don't work with just everything. From the top of my mind you can use those with priority and status but they don't support custom fields. It could be something like:
status changed from A to B after endOfDay(-7)
In order to do something like this I guess you'll need to do something quite complicated like:
That's all I can think of at the moment. Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.