Simple and lightweight, yet powerful ORM for your frontend that seamlessly integrates with your JsonAPI server.
GNU General Public License v3.0
94
stars
34
forks
source link
Remote add/update object with relationships in only one transaction #38
Open
pablorsk opened 8 years ago
Hi!
We need add/update relational objects but in just only one transaction.
For example,
We need save
car
and thewheels
, but if the wheels fail,car
object should not be saved. The server evaluate object as a whole, not as simple parts.In other words, we need just only one HTTP request for the
car
andwheels
.Of course, the example is for didactic purposes only.
Regards...