Need help,
After sprint plan I had someone updating a ticket and wanted to know what ticket it was I am using this query but not helping me out. basically I want to know the updates in the backlog within the past 6 hours.
updated >= -7H AND project = "XXXX" AND issuetype = "User Story" AND "Story Points" = 1
Add that at the end.
ORDER BY updated DESC > = -7H AND project = "XXXX" AND issuetype = "User Story" AND "Story Points" = 1
Tried it but query wouldn't process since it shows red. Any other suggestion?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this:
updated >= -7H AND project = "XXXX" AND issuetype = "User Story" AND "Story Points" = 1 ORDER BY updated DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would recommend adding:
ORDER BY updated DESC
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.