Helo,
I know I saw a fix for this a while ago but, I cannot find it. I was looking into doing certain queries in my project like this:
project = "myproject" and component = "this" OR component = "that" OR component = " there" AND resolution = Unresolved AND created > -1w AND status = open
but, I'm getting tickets that are either resolved and closed in the results.
You need to use brackets if you use "OR"
project = "myproject" and (component = "this" OR component = "that" OR component = " there") AND resolution = Unresolved AND created > -1w AND status = open
thank you that fixed it :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try wrapping everything with an or in parentheses. Example:
project = "myproject" and (component = "this" OR component = "that" OR component = " there") AND resolution = Unresolved AND created > -1w AND status = open
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also the resolution field are set as fixed for the closed ones.
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.