HorseShoe
07/29/2022, 3:02 PMHorseShoe
07/29/2022, 3:03 PMHorseShoe
07/29/2022, 3:03 PMHorseShoe
07/29/2022, 3:03 PMHorseShoe
07/29/2022, 3:04 PMgaryaustin
07/29/2022, 3:04 PMHorseShoe
07/29/2022, 3:04 PMHorseShoe
07/29/2022, 3:04 PMjamalam
07/29/2022, 6:43 PMsupabase.auth.api.setAuthCookie
on Deno (server side), but I can't because Response.setHeader
isn't a function?jamalam
07/29/2022, 6:43 PMResponse.headers.set
?jaitaiwan
07/29/2022, 10:14 PMpixtron
07/30/2022, 6:51 AMResponse.setHeader
is node.js syntax to set a header on a response. Deno seems to use Fetch API where it is indeed Response.headers.set
The supabase api setAuthCookie
seems to be only implemented for Next.js & Express https://github.com/supabase/gotrue-js/blob/e0ff2d8923c2f97370409ba517191e40caa79038/src/GoTrueApi.ts#L499jamalam
07/30/2022, 8:55 AMAdi
07/30/2022, 11:06 AMgaryaustin
07/30/2022, 12:43 PMAdi
07/30/2022, 4:39 PMiLikeBikes
07/30/2022, 5:22 PMgaryaustin
07/30/2022, 5:48 PMAdi
07/30/2022, 6:27 PMTaofiq
07/30/2022, 7:39 PMsilentworks
07/30/2022, 11:58 PMSTILLWATER;
07/31/2022, 8:46 AMsemicolondev
07/31/2022, 8:50 AMstring
value to number
before orderBy
using the supabase client?
I have a table with data inside a JSONb
column. I want to query the results with ASC
values of that column.
ts
const { data, error } = await supabase
.from<definitions["videos"]>("videos")
.select("*")
.order("meta->stats->likeCount", { ascending: false }, ) // <- likesCount is a string so it's returning wrong results.
.eq("channel_id", channelId)
.range(from, to)
.limit(5);
I'd really appreciate any help.Taofiq
08/01/2022, 7:38 AM{
price: 50,
name: "Burger",
quantity: 2
}
Is it possible to render it in real time or simulataneously without having to reload the pageTaofiq
08/01/2022, 7:39 AMlarryM
08/01/2022, 2:11 PM{ message: 'Request Failed' }
when using the sign in api from the javascript library:
const { user, session, error } = await supabase.auth.signIn({
email: 'example@email.com',
password: 'example-password',
})
has anyone ran into this issue before? I've even tried setting up a test project and it still throws the same error.Phenomen
08/01/2022, 3:19 PMJake378
08/01/2022, 3:20 PMPhenomen
08/01/2022, 3:21 PMJake378
08/01/2022, 3:21 PM