collection-sync / Exports / SyncConflictStrategy
• Force = "Force"
Force synchronizing by using the data from the source collection. Fetch will use the parent's data to update local data. Post will use data from the local collection and force it into the parent.
• Ignore = "Ignore"
Ignore conflicting items (do nothing about them).
• RaiseError = "RaiseError"
Abort sync if there's a conflicting item in the item set to sync (i.e. sync all or none).
• SyncUntilConflict = "SyncUntilConflict"
Syncs the items in order until there's a conflict.