i want to backup sync event from old account to new account. how fastest?
There is a table in the database specific to event syncs for confits.
If you want the synced data then you have to connect directly to mongo db, to do a dump and then to load that dump in a new database.
how connect moralis db to mongo db,
You have more info here about how to connect directly to mongo db
https://v1docs.moralis.io/moralis-dapp/database/direct_access
i want to connect the existing database on moralis to mongo.cloud, i can’t find the solution
i want to connect the existing database on moralis to mongo.cloud, i can’t find the solution
You can connect directly to your Moralis server’s MongoDB, cryptokid linked how you can do this.
You can use mongodump and mongorestore to copy your database to MongoDB Cloud.
why i modified on mongo compass after connect mongo host and mongo ip of moralis server database but moralis dashboard not find modified?
How did you modify your database in Mongo Compass? What are you expecting to see changed in your Moralis dashboard?
i add new table eventsync and add data. i expect find this table and data on moralis dashboard
and i want to ask for example when i add EventSync panel will these syncs show in Sync tab on moralis dashboard?
when i create new class on moralis dashboard i see modified, but i not create table start _ ex: _EventSyncStatus?
You have to add the table in Moralis dashboard too, that is because there is a table schema saved separately.
When you add data manually you have to have care for the ids to be strings
If you want event syncs on a new server, can’t you add that event sync on the new server assuming that the server is a Moralis server, or is a self hosted server?