cssler
cssler

Reputation: 73

Firebase Realtime Database to Cloud Firestore

I´m searching the best way to migrate Firebase Realtime Database Data to Cloud Firestore for a json database with many nested rows. Example:

enter image description here

I found nothing that could help me. For what I need the migration is the new offline functionality of the Cloud Firestore. I´m using Ionic3 (Angular5)

Upvotes: 0

Views: 976

Answers (1)

Hatchi Roku
Hatchi Roku

Reputation: 1004

Actually there's no standard way to migrate from Firebase Realtime Database to Cloud Firestore, because every application or project has is unique. You have to implement your own way of migrating to Cloud Firestore. But I suggest you read the next tutorials that will help you find the best way for you to migrate:

  1. Cloud Firestore Data Model.
  2. Firestore Data Structure.

Important note: By the way Firebase Realtime Database supports offilne persistence: Enabling Offline Capabilities Realtime Database.

Upvotes: 1

Related Questions