I have a query that works pretty well for the most part:
(assignee was estrom BEFORE now() AND status was not "In Code Review" ) AND status != Closed
This shows me all tickets that have been assigned to me in the past, that were NOT assigned to me for code review. But I'd like it to show tickets that had been assigned to me when the tickets were In Progress, that are now assigned to someone else for Code Review. How can I change the query to factor that in?
(assignee was estrom BEFORE now() AND status was "In Progress" BEFORE now())
AND assignee not in (estrom) AND status = "In Review"
I dont think its possible to get a specific "was assigned to me and was in progress during that time". So you could just go with "was assigned to me, and was in progress before" ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Daniel is correct, it is not possible to get a specific status and assignee combination for a period. The first part of his query will get results even if you have only been assigned - lets say the day before yesterday - but the status "In Progress"was left two months ago.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe start with "assignee was username" and then the rest?
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.