here is the code im using to grab the club and all...
# help
b
here is the code im using to grab the club and all the club_pages rows
Copy code
const {data, error} = await supabase
            .from('clubs')
            .select(`
            name, 
            description,
            club_pages (
                message
            )
            `)
            .eq('id', id)
            .single()
but I get the following error
> Object { hint: null, message: "column club_pages.name does not exist", code: "42703", details: null }
I think Im setting something wrong on with my FK
I would appreciate your help! 🙂