Gerrit filter for items I need to review
gerrit
Solution
A late reply, but for anyone looking for an answer to this you can filter out uploads where you have given a review score by appending below to your query.
is:reviewer AND is:open AND NOT label:Code-Review>=-2,userid
Where userid is replaced with your user id (usually an e-mail address).
It looks strange, but it does the trick. See the documentation for labels for more details https://review.openstack.org/Documentation/user-search.html#labels
Problem
I'm trying to create a search query which will tell me open changes which I am added to as a reviewer, but which I haven't submitted a code review for the latest patchset. This should include changes which other people have given a review for, but I have not. The closest I could find was `is:reviewer AND -is:reviewed AND status:open`, but this doesn't include changes which other people have reviewed but I have not.