Application ID 4A47197B-AE30-FA84-FF56-0071F4010900
I am able to successfully retrieve a list of objects from an external API that looks like this:
[
{
“date_updated”: “XXX”,
“display_name”: “XXX”,
“contacts”: [
{
“date_created”: “XXX”,
“emails”: [XXX]
}
]
},
{
“date_updated”: “YYY”,
“display_name”: “YYY”,
“contacts”: [
{
“date_created”: “YYY”,
“emails”:
}
]
}
]
I now want to add objects to 2 tables in Backendless. The parents table should contain objects with the date_updated and display_name properties while the student table should contain objects for date_created and emails. There should be a 1-1 relation from student to parent objects.
I first tried adding the parent objects to the table with this logic:
I got 126 out of 360 objects into my table.
I then received this error message:
{
“code”: 0,
“message”: “Task execution is aborted due to timeout”
}
Am I doing it right? I want to get 360 objects into the table, then get the students into the student table and then create relations following your logic on this video.