When updating an object the returned/saved object does not load the relations
e.g.
Table vehicle has relations to tables vehicle_make and vehicle_model and set to autoload these relations
//Retrieving a vehicle
Backendless.Data.of(“vehicle”).findById(…).then(vehicle=> {
// returned vehicle has the make and model relations
})
//update a vehicle
Backendless.Data.of(“vehicle”).save(vehicleObject).then(updatedVehicle=> {
//updatedVehicle only has vehicle properties, make and models relations are not loaded
})
Is this expected behaviour?
Thank you,
Constantin