Skip to content

Instantly share code, notes, and snippets.

@markreale
Created May 28, 2019 12:27
Show Gist options
  • Save markreale/769f833b3326dfdcbf530243088f9682 to your computer and use it in GitHub Desktop.
Save markreale/769f833b3326dfdcbf530243088f9682 to your computer and use it in GitHub Desktop.
Firestore - Deleting an entry (Document) from a Collection
db.collection("[YOUR_COLLECTION]").doc("[YOUR_DOCUMENT]").delete().then(function() {
console.log("Document successfully deleted!");
}).catch(function(error) {
console.error("Error removing document: ", error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment