I have a filter query :
assignee in ("scott williams", "joe smith", "john smith", "linda williams", "matt johnson") AND project = SDU ORDER BY Rank ASC
How could I also add that I want to make sure I filter by unassigned storys/bugs?
Similar to what Mikael post but this small edition will limit results to just the story and bug issuetypes.
(assignee in ("scott williams", "joe smith", "john smith", "linda williams", "matt johnson") OR assignee is EMPTY) AND project = SDU AND issuetype IN (Story, Bug)
This query should do it:
(assignee in ("scott williams", "joe smith", "john smith", "linda williams", "matt johnson") OR assignee is EMPTY) AND project = SDU ORDER BY Rank ASC
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.