Hey, I need some help with a Gallery. This is the items property that I have for that gallery:
Filter('public.table1', condition = true && state_id <> 6 &&
LookUp(
'public.table3',
LookUp(
'public.table2',
last_id = id,
result_id
) = id,
number_result
) < 0.85
))
With this Items property, the gallery is not returning any results, but this is incorrect as I have confirmed against the real data in the datasource and items should appear. If I remove the nested LookUp, it works, so I think the issue is there.
The reason for a nested LookUp is because I need the value in "number_result" column, but to join from table1 to table3, I need to go through table 2. Then I need to filter my gallery for those in table1 where number_result is lower than 0.85.
Any clues on why the nested lookup doesn't work inside the gallery? Is there another way that I could solve this?
Thanks