You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason incremental syncs are not supported on the preview API?
// Preview mode only supports `initialSync` not `nextSync`. The only reason `nextSync` should
// be called while in preview mode, is internally by the SDK to finish a multiple page sync.
// We are doing a multi page sync only when syncSpace.hasMorePages is true.
if !syncSpace.syncToken.isEmpty && host ==Host.preview && syncSpace.hasMorePages == false {completion(.failure(SDKError.previewAPIDoesNotSupportSync))returnnil}
We are in the process of (finally) migrating from contentful.objc. We have been using incremental syncs on the preview API with no issues with that library.
We have a "Preview" mode in our app that we use to test changes before publishing them to users. If we do not have the ability to do an incremental sync on the Preview API, we will have to do a full sync including downloading all files as we will not know what has changed. Is this correct?
Thanks!
The text was updated successfully, but these errors were encountered:
Is there a reason incremental syncs are not supported on the preview API?
We are in the process of (finally) migrating from contentful.objc. We have been using incremental syncs on the preview API with no issues with that library.
We have a "Preview" mode in our app that we use to test changes before publishing them to users. If we do not have the ability to do an incremental sync on the Preview API, we will have to do a full sync including downloading all files as we will not know what has changed. Is this correct?
Thanks!
The text was updated successfully, but these errors were encountered: