I want to know in which order my offline object updates and creates will sync to the backend?
For example, if I create and save 3 objects in sequence, 1…3, and then after then I go ahead and update each of them in sequence then in what order can I expect these creates and updates to get synchronized to the backend?
So the offline order is as follows
- Create and save obj1
- Create and save obj2
- Create and save obj3
- Update and save obj1
- Update and save obj2
- Update and save obj3
Specifically if I have a webhook that is getting fired from those object updates, I want to know in which order the webhooks will get fired?