Is it possible to export all of the cloud dialing data?

I am working on an application and I am setting up a development environment. Now I want to go into the production environment. Is there any option to transfer all data from development to production to the cloud? or Is it possible to export all data in Json format?

0
source share
1 answer

When deployed to production, only the schema is copied, not the data.

You will have to either write code to copy the data (for example, JSON, as you mentioned, or save the data locally in CoreData, synchronize with the development environment, then switch to the production environment, re-run the code and re-synchronize) or re-enter it manually.

If you use code, switch between the development and production environment using the rights file, mine is given below for reference (change Production to Development as necessary and rebuild your code):

File File Rights

+2
source

All Articles