willhlaw / node-firestore-backup-restore

Google Firebase Firestore backup and restore tool
91 stars 24 forks source link

Feature/exclusions #56

Open Endran opened 5 years ago

Endran commented 5 years ago

Exclude collection or document

To exclude collections or documents from backup you can use the option --exclude.

All documents and subcollections following a match will be excluded. By specifying the document ID a specific subcollection can be excluded. Use * for document ID wildcard.

Example:

firestore-backup-restore --accountCredentials path/to/account/credentials/file.json --backupPath /backups/myDatabase \
  --exclude "/logs,/users/*/details,/settings/private"