Retrieve data from a related table like SQL LEFT JOIN

Hi All,

I created a 1:1 relationship between “task” and “Users” table.
image

How do I make a single call to “Load Table Objects” to table “task” and get data from the related “Users” like the following SQL?
"SELECT u.name AS ‘Name’ , t.username FROM task t
LEFT JOIN Users u ON t.username = u.username "

Thanks.
Deric

Hello @Deric_Voon

Try this request:
GET
https://api.backendless.com/<appId>/<appiKey>/data/Task?property=username&property=requestor_uname_re.name

More info about Working wih Properties

Hi Vlad,
How do I call this REST API in the codeless environment and assign the returned data to Dynamic List.
Thanks.

It would be this:

1 Like

Thanks. That solved my problem.
Thank you so much