const { data: game } = await supabaseClient
.from('games')
.select('*, profiles(id, name, bio, avatar_url), players(*, profiles(id, name, bio))')
.eq('id', event.params.id)
.single();
const { data: game } = await supabaseClient
.from('games')
.select('*, profiles(id, name, bio, avatar_url), players(*, profiles(id, name, bio))')
.eq('id', event.params.id)
.single();