jon.m
01/03/2022, 4:49 AMakshg05
01/03/2022, 5:28 AMjon.m
01/03/2022, 5:29 AMjon.m
01/03/2022, 5:37 AMconst { data, error } = await supabase
.from('countries')
.select(`
name,
cities (
name
)
`)
jon.m
01/03/2022, 5:38 AMjon.m
01/03/2022, 5:38 AMakshg05
01/03/2022, 6:30 AMakshg05
01/03/2022, 7:22 AMakshg05
01/03/2022, 7:51 AMAntonio Giroz
01/03/2022, 12:15 PMwiesson
01/03/2022, 1:22 PM/app
after a successful gogole oauth login?wiesson
01/03/2022, 1:23 PMasync function signInWithGoogle() {
await supabase.auth.signIn(
{
provider: "google",
},
{ redirectTo: "/app" }
);
}
Do I have to add the absolute / full path here? The docs aren't that clear 😅
// edit: only full path workskresimirgalic
01/03/2022, 2:01 PMrecursionDev
01/03/2022, 3:36 PMDeleted User
01/03/2022, 3:37 PMrecursionDev
01/03/2022, 3:38 PMDeleted User
01/03/2022, 3:39 PMrecursionDev
01/03/2022, 3:40 PM1304654
01/03/2022, 4:16 PMcoozamano
01/03/2022, 4:20 PMremaining connection slots are reserved for non-replication superuser connections
For context: My frontend is Vercel, I have several data jobs which are consistently connected and a decent amount of active userscookie mob
01/03/2022, 4:54 PMjon.m
01/03/2022, 5:43 PMjon.m
01/03/2022, 5:43 PMconst { data, error } = await supabase
.from('cities')
.select('name, country_id')
.eq('name', 'The shire')
Snehal
01/03/2022, 5:59 PMAntonio Giroz
01/03/2022, 6:45 PMuser
01/03/2022, 7:10 PMuser
01/03/2022, 7:11 PMPozzuh
01/03/2022, 8:47 PMRETURNS table (content json)
instead of RETURNS json
in the Supabase interface?Garrett Tolbert
01/03/2022, 9:09 PMNull
01/03/2022, 10:32 PM