Firestore read rules with self condition
问题 I'm currently trying to build small app on firebase as an evaluation of it. It looks interesting and super productive, but I have one problem with firestore rules. I have one collection (games) with objects looking like this: { "name":String, "description":String, "owners": { "uid": String "uid2": String } } And rules set like this: service cloud.firestore { match /databases/{database}/documents { match /games { match /{game} { allow write: if request.auth != null && request.resource.data