What is the recommended way to delete all records of a collection?
- Removing each field with
entry.unset("fieldName")
- Iterating over all results and call
entry.destroy
- Delete the collection? (=> How?)
Iโm currently going through each result, which for quick testing seemed fine but is not really scaleable.