How do I add assignee = empty to a filter

Natalie Humphreys September 22, 2017

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?

 

2 answers

1 vote
Peter DeWitt
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 22, 2017

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)

1 vote
Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 22, 2017

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

Suggest an answer

Log in or Sign up to answer