๐ Allow - Read, Write, & Beyond
What operations can you allow in Firestore?
   firestore.rules
  match /users/{docId=**} {
      allow read, write;
      allow get;
      allow list;
      allow create;
      allow update;
      allow delete;
      
    }