Sorting
In your project there may be a particular field such as position
. A field like position
needs extra attention because it should not contain values that, during synchronization, could be incorrect. I'll give you an example:
0
aaa-aaa-aaa
1
bbb-bbb-bbb
2
ccc-ccc-ccc
4 (3?)
ddd-ddd-ddd
This might be a situation you don't want to find yourself in, i.e. where a position is skipped (the third in this example). This could cause problems for your apps that need to manage position.
When you set a field in the sorting_key
, Asyncher will pay attention to these 3 things about that field:
That the position starts from 0.
That there are no empty positions (as in the previous example).
That the position field is set to
null
if data is deleted but you have set a field indeleted_at_key
.
Last updated