Firebase Firestore rules to overcome "Missing or insufficient permissions" when deleting the documents created by the user – Ios swift
I am developing an IOS app which lets user delete the documents created by them. I am using the following: Collection_Ref.document(docId).delete() This works perfectly fine when I use the below database rules: service cloud.firestore { match /databases/{database}/documents { match /{document=**}…