postgrest-js
postgrest-js copied to clipboard
Supabase inner join not working with Typescript.
const { data, error } = await supabase<Messages>
.from('messages')
.select('*, users!inner(*)')
.eq('users.username', 'Jane')
this shows Type error at users.username
Sorry for the late reply. Can you try this with @supabase/supabase-js@rc
? We'll release this as v2 soon - v1 likely won't be updated from then on.
Sorry for the late reply. Can you try this with
@supabase/supabase-js@rc
? We'll release this as v2 soon - v1 likely won't be updated from then on.
What is rc? When u releasing v2
It's the release candidate for the new version: https://supabase.com/docs/reference/javascript/next/release-notes
Current plan is to release v2 next week.