Markeem
12/21/2021, 8:13 AMbh
12/21/2021, 8:20 AMMarkeem
12/21/2021, 10:43 AMselect('username ,updated_at').lt('updated_at', new Date(2021, 11, 18, 13).toISOString())
works or some special keywords work as well select('username ,updated_at').lt('updated_at', 'now')
ilbert
12/21/2021, 11:16 AMilbert
12/21/2021, 11:16 AMnoxy
12/21/2021, 11:55 AMnoxy
12/21/2021, 11:56 AMilbert
12/21/2021, 12:00 PMnoxy
12/21/2021, 12:03 PMnoxy
12/21/2021, 12:03 PMnoxy
12/21/2021, 12:04 PMnoxy
12/21/2021, 12:05 PMnoxy
12/21/2021, 12:06 PMnoxy
12/21/2021, 12:06 PMilbert
12/21/2021, 12:13 PMnoxy
12/21/2021, 12:14 PMilbert
12/21/2021, 12:15 PMnoxy
12/21/2021, 12:18 PMeyk
12/21/2021, 12:39 PMuser
12/21/2021, 4:05 PManothercoder
12/21/2021, 4:14 PMVillage
12/21/2021, 4:14 PMVillage
12/21/2021, 4:15 PMjensen
12/21/2021, 4:58 PMnew Date(1640105900 * 1000).toISOString()
. In this instance you are using the ISO 8601 date format 2021-12-05T09:00:00Z
for the comparison.Timon
12/21/2021, 5:01 PMkrithika
12/21/2021, 6:42 PMsignIn
or signUp
, the error.message
reads aborted
. Would you know what's causing that/how to fix it? For reference, here's the code: js
const signin = async (email, password, navigate) => {
console.log("log in called", email, password)
try {
const {user, session, error} = await supabase.auth.signIn({email, password})
if (error) throw error
alert('logged in')
console.log('logged in')
navigate('/dashboard')
}
catch (error) {
console.log("error in signin", error.message)
alert(error.message)
}
}
const signup = async (email, password, navigate) => {
console.log("signup called", email, password)
try {
// const {user, session, error} = await supabase.auth.signUp({ email, password })
const {user, session, error} = await supabase.auth.signUp({ email, password })
if (error) throw error
console.log("here")
navigate('/dashboard')
}
catch (error) {
console.log("error in signup", error.message)
alert(error.message)
}
}
Ryan the Temp
12/21/2021, 6:45 PMts
this.supabase.instance
.from<definitions['games']>('games')
.on(SupabaseEventTypes.delete, (payload) => console.log(payload))
.subscribe();
nothing gets logged. I've enabled full table replica like so: alter table "games" replica identity full;
but still it doesn't seem to trigger the event for some reason. 🤔jibbery
12/21/2021, 7:29 PMRetrieve vercel projects failed. An error has occured: 401
jibbery
12/21/2021, 7:29 PMProdigy7kX
12/21/2021, 9:23 PMts
this.supabase.from("boards").select("*, cards(*)");