I am really confused on this. If I programitically delete all the documents from a Firestore collection, the collection itself is also deleted:
this.afs.collection(myCollecton).doc(docId).delete();
But if I delete all the documents using the Firebase console online, I don't always see the collection deleted! I literally deleted all the documents from a collection and it still was in the console. I could immediately create another document in the collection. But sometimes the collection did just go away...?!
I read through some posts like Deleting all documents in Firestore collection but have not seen anything to account for this.
Since a collection must have a document it, I guess it's inferred that deleting all of the documents would delete the collection. The delete-data documentation doesn't mention this, but even so, why do I only sometimes see the collection deleted???