I am storing a collection of documents of blocked users. I am checking if the request is from a blocked user or not by checking if the email exist within the blocked collection
allow read: if exists(/databases/$(database)/documents/blocked/$(request.auth.token.email)) == false;
does checking if the document exist count as a read?