Dominic
02/06/2025, 11:28 AM$profile_addresses(*) as addresses
. Unfortunately this doesn't add the addresses to my profiles. Only if I add a filter_by: $profile_addresses(id:*)
it includes the required fields, but automatically excludes all profiles that don't have an address. I need to include the addresses if exist, but still keep a profile in my result even though it doesn't have an address. How to achieve this? Thanks in advance!Rob Bast
02/06/2025, 11:31 AMRob Bast
02/06/2025, 11:31 AMfilter_by: 'id:* || $profile_addresses(id:*)'
Dominic
02/06/2025, 11:35 AM$group_profiles(group_id:=7214)
so I need to replace id:* with it since id:* will give me all profiles, right?Rob Bast
02/06/2025, 11:35 AMDominic
02/06/2025, 11:35 AM