farzd
09/28/2021, 5:47 PMlet { data} = await supabase
.from('points')
.select('*, quizzes(type)')
.filter('quizzes.type', 'eq', `someth`)
jkl
09/28/2021, 5:48 PMkennethcassel
09/28/2021, 9:50 PMsilentworks
09/28/2021, 10:25 PMinner programmer
09/28/2021, 11:40 PMHorseShoe
09/29/2021, 5:01 AMHorseShoe
09/29/2021, 5:01 AMnath
09/29/2021, 10:18 AMteam_members
and added a foreign key called userID
which relates to auth.users.id
but if I run select userID from team_members
I get column "userid" does not exist
... Please someone tell me what an idiot I am and what I'm doing wrongjason-lynx
09/29/2021, 11:13 AMselect "userID" from ...
that said, it's a good idea to only have column names lowercase + separated by an underscore, much like your table name team_members
nath
09/29/2021, 11:16 AMstefans.dev
09/29/2021, 3:09 PMYelloJello
09/29/2021, 3:48 PMYelloJello
09/29/2021, 3:51 PMJanR
09/29/2021, 4:42 PMVinzent
09/29/2021, 6:31 PMsilentworks
09/29/2021, 7:49 PMNeucoas
09/29/2021, 8:24 PMmysite.dev/recovery
. The option SITE URL that is on the supabase options doesn't seem to work
All the email links have the redirectTo=http://localhost:3000/
Why is that?jon
09/29/2021, 8:26 PMselect created_at as "created"
2. How to do a union
with supabase js clientBabyWolfman
09/29/2021, 10:42 PMmy-app-*.vercell.app
, so that branch deployments with unique urls can all share a configuration.... but "Additional Redirect URLs" can only support exact matches. Am I missing something here?BabyWolfman
09/29/2021, 10:43 PMstibbs
09/30/2021, 1:42 AMts
<script lang="ts">
import { dev } from '$app/env';
import { page } from '$app/stores';
import { supabase } from '$src/utils/supabase';
let email: string;
const prefix: string = dev ? 'http://' : 'https://';
const redirectUrl: string = `${prefix}${$page.host}`;
const handleSubmit = async () => {
await auth.signIn(
{ email },
{ redirectTo: redirectUrl }
);
};
</script>
I did a small write-up: https://www.stibbard.io/learning/dynamic-auth-redirect-sveltekit-supabasestibbs
09/30/2021, 3:54 AMwario
09/30/2021, 6:38 AMnyellin
09/30/2021, 9:35 AMjason-lynx
09/30/2021, 10:16 AMSECURITY DEFINER
+ created by a role that bypasses RLSnyellin
09/30/2021, 10:17 AMclaud9
09/30/2021, 2:31 PMclaud9
09/30/2021, 2:49 PMbegin
perform extensions.http_get('https://webhook.site/f0726ed2-a438-4536-a539-1f7a23b809ba');
return new;
end;
BabyWolfman
09/30/2021, 3:44 PMVinzent
09/30/2021, 3:46 PM