I need to allow a user to read a specific document /customers/cumstomerkey but not to get the whole collection. How can I achieve that? Following rule allows access to get the whole collection:
match /customers/{document=**} {
allow read, write: if true;
}