I am trying to create a queue for Closed tickets. Since open tickets are queried by:
Resolution = Unresolved
I assumed that I could pull up closed tickets by using:
Resolution != Unresolved.
However, this does not pull up the Resolved tickets. I've confirmed that the Status of Resolved does equal Done. Why does the above query not work? I know I can change the query to look by Status instead of Resolution instead but I'm asking why this does not work.
If you're really looking to see if an issue is resolved by using the Resolution field, I would check to see if it is empty. Unresolved issues would not have a value for Resolution.
Alternatively you could check for the statusCategory instead:
statusCategory = Done
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.