project = "XXXX XXXX" AND watcher = XXXX AND status in ("In Review", Duplikat, "On Hold", Backlog, "To Do", Review, Open)
Can you confirm your question here?
Are you asking how to search within a single project for watchers and issue editors within your query? Or something else?
Ste
Yes, I´m looking for a filter which includes editor and watcher, like the example above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It depends what you're trying to achieve with editor.
----------------
If it's whether a specific user updated an issue, you could use:
project = ABC and watcher = User1 and issue in updatedBy("User1","2020-01-01","2020-08-01") and status in (ABC, XYZ, 123)
^ The issue in updatedBy("User1","2020-01-01","2020-08-01") allows you to search for whether User1 updated the issue in any way between two specific dates. You can do a few different things with updated by - such as:
----------------
If this isn't what you're trying to achieve there might be another option. Could you let us know if this resolves the question, and if not what you're trying to achieve?
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.