firestore.rules
match /users/jeffd23 {
// Single document
}
match /users/{userId} {
// Single Collection
}
match /posts/{postId=**} {
// Recursive wildcard, includes all subcollections
}
match /users/jeffd23 {
// Single document
}
match /users/{userId} {
// Single Collection
}
match /posts/{postId=**} {
// Recursive wildcard, includes all subcollections
}
Ask questions via GitHub below OR chat on Slack #questions