Today I had a problem with one of my applications because it no longer allowed me to overwrite an objectId when setting a relationship between the tables, I would like to know if there was any notification to find out that this functionality was no longer going to be working
I have two tables, OrdersStore and Products with 1to 1 relation, the relation column is product in the OrderStore table, I use to do (SDK for javascript):
const GiftOrdersStore = Backendless.Data.of('GiftOrders');
const queryBuilder = Backendless.DataQueryBuilder.create();
queryBuilder
.setWhereClause('status = 0')
.setProperties([
'product.name as name',
'product.objectId as objectId',
'product.pictureFile as pictureFile',
'product.presentation as presentation',
'Count(product) as productCount'
]);
return OrdersStore.find(queryBuilder);