How to download Firestore collection documents to my Local pc

Viewed 22

How can I download firestore collections to my local pc to make a process then upload it again to firestore.

I downloaded the collection from gcloud console but the collection did not open and the format is different than what is in firestore.

1 Answers

My guess is that you downloaded a backup of the data, which is not really in a format meant for editing.

I'd probably use the API to download the documents, store them in a format that works for you, and then reupload them through the API again.

Related