Blaise
06/05/2022, 4:19 PMBaoshan
06/06/2022, 2:46 AMpostgres one)? It seems NO as I tested.Voldari
06/06/2022, 4:02 AMMaus
06/06/2022, 1:38 PMjoshcowan25
06/06/2022, 2:01 PMn10000k
06/06/2022, 2:57 PMBicijay
06/06/2022, 4:53 PMKevin Mann
06/06/2022, 5:54 PMJenaro Calvino
06/06/2022, 7:24 PMmendo
06/06/2022, 8:24 PMvideos table that is linked to the file, says it's "public".
More about this structure in this threaddaviscup
06/07/2022, 1:42 AMuser_metadata somewhere in the supabase Authentification? All I can find is email/phone/provider/created/last sign in/user UIDNeedle
06/07/2022, 11:52 AMMartin INDIE MAKERS
06/07/2022, 12:18 PMconst { data, error } = await supabase
.from<definitions['users']>('users')
.select()
.eq('id', auth?.id)
.limit(1)
.single()
if (!error && data) {
console.log('user', data)
main.user = JSON.parse(data as any as string) // TODO: Understand why it's needed
// main.user = data
}lblangenois
06/07/2022, 2:53 PMINSERT, I get message: "new row violates row-level security policy for table \"UserDatas\"" on error and even with returning: "minimal" and RLS for enable SELECT for all users, I get this error. Someone has a solution ?Trypluś
06/07/2022, 3:57 PMNeedle
06/07/2022, 4:01 PMdevthines
06/07/2022, 5:10 PMJingly
06/07/2022, 8:09 PMsupabaseClient = supbase.createClient(url, key), is there a way to go supabaseClient.disconnect() ?ani
06/07/2022, 8:43 PMstukennedy
06/07/2022, 11:18 PMspetz83
06/08/2022, 12:50 AMspetz83
06/08/2022, 12:55 AMBig Bird
06/08/2022, 3:48 AMtalents and one of its column is of INT[] which is an array referencing the column id of another table called skills.
When I run the following query it runs fine, but for the column skills I currently get for example [1,8,19], when I'd like to instead return its `name`column like ['Engineering','Python','Solidity']
let { data, error } = await supabase
.from('talents')
.select("*")
.order('id', { ascending: false })
.limit(5)
How would I modify above query to get the values from a foreign table?bh
06/08/2022, 4:33 AMSneha Singh
06/08/2022, 7:02 AMMuphet
06/08/2022, 8:14 AMMhstrunique
06/08/2022, 11:27 AMNeedle
06/08/2022, 12:46 PMTrypluś
06/08/2022, 2:26 PMBicijay
06/08/2022, 2:30 PM