garyaustin
01/08/2022, 9:11 PMStuart
01/08/2022, 9:38 PMoliviercp
01/08/2022, 10:32 PMMichael Ketzer | streamgeist.com
01/09/2022, 7:43 AMapi/auth
route.
Checkout the profile
route how to use the cookie in SSR. If you checkout the last image above i posted, that is actually one way to select rows as authenticated user with RLS. If this is the intended way, i don't know.dhruv_casa
01/09/2022, 8:54 AMdhruv_casa
01/09/2022, 8:54 AMdhruv_casa
01/09/2022, 8:55 AMVuNguyen
01/09/2022, 9:17 AMmanga
rows that don't have any chapters
rowtourdownunder
01/09/2022, 9:29 AMsql
DELETE FROM manga WHERE id in (SELECT id from manga m inner join chapters c ON c.manga_id = m.id where c.foo = 'bar')
I saw that you had a left join. Don't do that in this casechipilov
01/09/2022, 10:47 AMchipilov
01/09/2022, 10:50 AMlogemann
01/09/2022, 10:54 AMVuNguyen
01/09/2022, 11:15 AMmanga
rows that don't have any chapters
rows. Is this the right way?
sql
DELETE FROM manga WHERE id in (SELECT id from manga m inner join chapters c ON c.manga_id = m.id where c.chapter_id is null)
tourdownunder
01/09/2022, 11:59 AMwsh4and
01/09/2022, 12:15 PMdavidML
01/09/2022, 12:16 PMwsh4and
01/09/2022, 12:22 PMVuNguyen
01/09/2022, 12:31 PMoliviercp
01/09/2022, 1:32 PMnananananate
01/09/2022, 4:46 PMchipilov
01/09/2022, 4:50 PMnananananate
01/09/2022, 4:59 PMthecoderatekid
01/09/2022, 5:05 PMdavidML
01/09/2022, 5:50 PMequality_op
and action
where can I find some info about all of this?Devlooper
01/09/2022, 6:13 PMArgument of type 'string[]' is not assignable to parameter of type 'string'
, what in the world is wrong? The selectedPriceRange variable is of type string[]
. But if i hard code the value in .rangeAdjacent to for example .rangeAdjacent('price', [100, 200]) i get a 404.rcssdy
01/09/2022, 7:30 PMconst { error, data } = await supabase.from("jobs").select("*");
return { data };
isn't grabbing any data from the specified table (it's set up and has a single row of data)
my supabase client is all set up correctly, I'm currently using it for authentication - so I'm not 100% sure as to why it's not returning any results, any help would be appreciated!jensen
01/09/2022, 8:09 PMmagpow
01/09/2022, 9:56 PMrcssdy
01/09/2022, 10:09 PMmagpow
01/09/2022, 10:46 PM