Nested Data
If you need to synchronize more complex data that may also contain other data within it, Asyncher can handle it.
For example, if your data has attributes (id, name, surname, comments)
, the JSON sent by the client will be of this type:
As you can see you will simply have to pass it the comments too and Asyncher will automatically understand that it will have to synchronize them too. Note that the comments also include the is_new
, updated
and deleted
attributes.
If you need it, you do not necessarily have to pass it a list, Asyncher also accepts just an object. For example:
Last updated