Sync order for offline data creation and updates

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

  1. Create and save obj1
  2. Create and save obj2
  3. Create and save obj3
  4. Update and save obj1
  5. Update and save obj2
  6. 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?

1 Like

The order in which these objects are saved/updated will result in the same order the webhooks trigger.