Let's imagine a set of rules having the following fields:
service cloud.firestore {
match /databases/{database}/documents {
match /stories/{story} {}
match /comments/{comment} {}
match /posts/{post} {}
}
}
And we want to add a new match condition for all the remaining collections using a wildcard of come sort.
How can I achieve this?