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
{{ message }}
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
Sync currently in most of the times returns specific format of dataset:
{uid: "myid",data: {name:"mydata"}}
This format is not flexible and in most of the cases it will be better to integrate id into actual data.
Most of the sync implementations doing that anyway.
Example code for formatter:
_.values(syncResponse).map((syncData: any)=>{// Change format of the data by mapping id'ssyncData.data.uid=syncData.uid// Only interested in the actual data from the sync responsereturnsyncData.data;});
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Sync currently in most of the times returns specific format of dataset:
This format is not flexible and in most of the cases it will be better to integrate id into actual data.
Most of the sync implementations doing that anyway.
Example code for formatter:
The text was updated successfully, but these errors were encountered: