Sync — 4.1.0
-
Fixes a crash in to-many relationships #467
Before the following JSON would create 6 body entries, now is only 3.
[{
"id":0,
"title":"story 1",
"comments":[{
"body":"comment 1"
},{
"body":"comment 2"
},{
"body":"comment 3"
}]
},
{
"id":1,
"title":"story 2",
"comments":[{
"body":"comment 1"
},{
"body":"comment 2"
},{
"body":"comment 3"
}]
}]
-
Fixes an issue where sending empty or null wouldn't remove the element #459
-
Added a code of conduct #468
-
Added support for extended operation options #433
Before you could set insert
, update
and delete
operations and that worked for both parents and children, now you have more control and can also decide if children follow these rules using insertRelationships
, updateRelationships
and deleteRelationships
.