select *
from profiles
INNER JOIN images ON profiles.id = images.profile_id
INNER JOIN follows on profiles.id = follows.following_id
where follower_id = 12;let { data: images } = await supabase
.from('images')
.select('*, profiles!inner(*)')
.range(0, 25)
.eq('profiles.id', 10)
.order('created_at', { ascending: false });