2
votes

I am currently using Firebase Realtime database. I have imported JSONs into Realtime database but due to limitation of query i need to switch on Firebase Firestore.

I want to import JSONs into Cloud Firestore of Firebase.

1

1 Answers

2
votes

There is no automatic conversion from Firebase's Realtime Database to Cloud Firestore. While both are NoSQL databases and part of Firebase, their data models are different, and they are not compatible in any way.

You will have to figure out how you want to map your JSON data from Realtime Database, to the collection/document model of Cloud Firestore, and then write code against the APIs of the databases to port the data over.

Also see: