1this.db
2 .collection('cart')
3 .get()
4 .toPromise()
5 .then((querySnapshot) => {
6 querySnapshot.forEach((doc) => {
7 doc.ref.delete();
8 });
9});
1// define document location (Collection Name > Document Name > Collection Name >)
2var docRef = Firebase.firestore().collection("Rooms").doc("bsYNIwEkjP237Ela6fUp").collection("Messages");
3
4// delete the document
5docRef.doc("lKjNIwEkjP537Ela6fhJ").delete();