[SOLVED] Livequery sockets connection loss and the events emitted during the connection loss

When live query sockets are disconnected, what happens to MoralisObjects which were created/updated in the moralis database during the connection loss? Will, it emits the create/update events considering the MoralisObjects created/updated during the connection loss or it will only emit the upcoming events?

my expectation is that it will only emit the upcoming events

If that is the case, I hope developers need to handle those events which were created/updated during the connection loss manually. Websockets connection from Moralis live queries are stable / do we experience any random/frequent connection loss for a paid plan?

And also I would like to know about the events API which is being developed by the Moralis team for future usage.

The events API it is still in development, that one will handle the events that were not received if some connection is lost.

For current live query, it is from parse server implementation. How do you use it in particular (front end or backend)? if you want the data synced on your backend server you can connect directly to mongo db too.

Great, I plan to use the events API once it is released for the developerโ€™s use.

Actually, I am trying to sync my custom smart contract events with my own business logic on the backend servers, I guess using a live query service will reduce development time instead of having a direct connection to MongoDB and building the change stream/events, etc.