Using the advanced search feature in the Issues section, I want to find all issues where I am NOT listed as a watcher (there can be multiple) and where I have at some point been the assignee. I've tried this:
assignee was estrom BEFORE now() and status != Closed AND watcher != currentUser() ORDER BY status ASC, key ASC
but it's still returning issues where I am listed in the watcher field. Where am I going wrong?
Ah, good, then I think you just need to tweak the watcher != bit. I think that is being read as "the watcher is not the current user". Looks right at a glance (and it completely confused me on my first comment too), but thinking about it, I think that will only match cases where the current user is the *only* watcher.
I think it needs to be "key not in watchedIssues()", because that says "check each issue, get the list of watchers and drop it if the current user is in there".
Torturous to explain in English, but it probably makes perfect sense in logic/computer
Try:
assignee was estrom and key not in watchedIssues() and status != Closed ORDER BY status ASC, key ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Damn, I think I am the only one seeing my answer. lol.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, I see your answer. But it's the same as Nic's, and my conversation with him started before you posted your answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Vote up since you were first
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have converted his comment as an answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Esther Do you still have your email notifications? ;) Anyways, Nic deserves it for the explanation he gives. He is the man!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, Nic. That worked. If you want to post as an actual answer, I'll accept it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the query above it schould be watcher not in (currentUser()) since watcher != currentUser() does not work
I was wrong:watcher != currentUser() is working . Had a typo in my query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're right, Nic - that was a typo. It's supposed to say that it's still returning issues where I AM listed as a watcher.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Um, I'm stuck. You say you want to find issues where you are not a watcher (before the JQL, which, incidentally, looks like it should work), then say that it's returning issues where you are not listed in the watcher field. That sounds correct? I suspect a typo here?
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.