Our current backendless version: Pro v7.0.14
Steps to reproduce:
-
Create DB table City with columns:
name: string -
Create other DB table People with columns:
name: string,
city: - DataRelationObject(1:1), RelatedTable: City -
Insert a record to City table
-
Insert a record to People table, add to it a related record in City.
-
Try to get a record from People, with relations
city
and the propscity
Actual result: the record returns with city: null
Expected result: the record returns with city: CityRecord data here
here is the POST requests I sent:
1) Works GOOD - /data/People?loadRelations=city
returns:
[
{
"city": {
"name": "Berlin",
"___class": "City",
"ownerId": null,
"updated": null,
"created": 1742384624039,
"objectId": "8CBA0917-0239-49C5-8095-40D2A69E8CB7"
},
"created": 1742384640026,
"name": "John",
"___class": "People",
"ownerId": null,
"updated": 1742385281279,
"objectId": "19129738-C00B-4615-948B-D4EBF574AB8D"
}
]
2) Works WRONG - /data/People?loadRelations=city&props=city
returns:
[
{
"___class": "People",
"city": null,
"objectId": "8CBA0917-0239-49C5-8095-40D2A69E8CB7"
}
]
And in request #2 the city
props should not be null
.
That is how it was working in Backendless v6.
Is it an expected behavior or a bug?
PS: in BL v6, request #2 returns like:
[
{
"___class": "People",
"city": {
"name": "Berlin",
"___class": "city",
"ownerId": null,
"updated": null,
"created": 1742384729383,
"objectId": "BDCF5D1D-6D80-428E-A2BC-0D4F3A121B47"
},
"objectId": "38C9DEA7-2856-46E8-A955-6250F4E1EA86"
}
]
cc: @sergey.kuk