octabytes / FireO

Google Cloud Firestore modern and simplest convenient ORM package in Python. FireO is specifically designed for the Google's Firestore
https://fireo.octabyte.io
Apache License 2.0
247 stars 29 forks source link

Fix delete all documents in collection documentation #213

Closed bitnahian closed 11 months ago

bitnahian commented 11 months ago

Current documentation for the managing-data/deleting-data.md is incorrect for deleting all documents.

Delete collection

Delete all documents from collection

Example Usage

User.collection.delete() #incorrect

Correct version should be

User.collection.delete_every()