Skip to content

Firestore Delete Data

Eoin Landy edited this page Jan 30, 2020 · 2 revisions

The contents of this page are based on the original Firebase Documentation

To delete a document, use the remove() method:

db.collection("cities").document("DC").remove(function(path:String, error:FirestoreError):void{

});
Clone this wiki locally