Weird problem retrieving object relations from table

Hi,

I have 2 tables linked bi-directionally via 2 separate relations as in this schema (I guess it´s not necessary but I´m a rookie and it makes my life easier until I get deeper into backendless):

So when I load the table reservationslist with relation payments it´s all ok, loads fine, and I can access all data as required.

But when I try doing the opposite - ie: retrieving table payments with relation reservationslist it throws an error :confused:

Can you not link tables bidirectionally via 2 separate links? And if it´s not possible how does one load (always in codeless) a table where you only know the child in a relation or even worse a child 2 levels down (the grandson so to speak)?

Thanks and sorry if these are silly questions,

The reason you’re getting an error is because the name of the relation column in the payments table is not reservationslist. The name of the column is For_Reservation. So in here ,you need to specify relation column name and not the table name:

Crap! Sorry, must be too many hours on this, had done it this morning and thought I was losing my mind lol. Thanks for the patience Mark!