How can I turn this SQL into Supabase-js query?

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;
Was this page helpful?