© 2026 Hedgehog Software, LLC
const { data, error } = await supabase .from('rooms') .select(`*, hotels!inner (*)`) .eq('hotels.company_id', '1234');
{ error: { code: '57014', details: null, hint: null, message: 'canceling statement due to statement timeout' } }
SELECT * FROM rooms r join hotels h on r.hotel_id = h.id where h.company_id = '1234'