In Swift, how does one delete all documents in the collection. Is the solution to iterate over each document to delete it by document id? Or is there a .deleteAll function?
TL;DR
In Swift, developers can delete all documents in a collection by iterating over each document and deleting them by document ID; there isn't a .deleteAll function available.