! Class self.PythonAddict = True
07/29/2021, 5:51 AMmagicquin
07/29/2021, 5:51 AMmagicquin
07/29/2021, 5:52 AM! Class self.PythonAddict = True
07/29/2021, 5:52 AMmagicquin
07/29/2021, 5:53 AMlawrencecchen
07/29/2021, 7:05 AMlawrencecchen
07/29/2021, 7:06 AMhttps://kplieuifhjheqbpbrdje.supabase.in/storage/v1/object/public/test-public/cat.jpg▾
lawrencecchen
07/29/2021, 7:15 AMeverconfusedguy
07/29/2021, 7:52 AMLio
07/29/2021, 7:56 AMLio
07/29/2021, 7:57 AMbody
in GETs but like I said, it's generally not supported by stuffJW
07/29/2021, 8:26 AMcolumn_a=eq.$userId OR column_b=eq.$userId
jason-lynx
07/29/2021, 8:33 AMYelloJello
07/29/2021, 8:36 AMjason-lynx
07/29/2021, 8:38 AMprovider: email
, which would be the same as someone that logs in via the usual email + password methodYelloJello
07/29/2021, 8:42 AMjason-lynx
07/29/2021, 8:50 AMlnraahCC
07/29/2021, 9:01 AMYelloJello
07/29/2021, 9:08 AMfrom()
so you would just follow the syntax of postgrest, so you wouldn't use OR as in the SQL operator, you'd use or
but I don't quite get what you're trying to doJW
07/29/2021, 9:09 AMYelloJello
07/29/2021, 9:10 AMYelloJello
07/29/2021, 9:11 AMJW
07/29/2021, 9:25 AMYelloJello
07/29/2021, 9:56 AMSupbaseQueryBuilder
extends PostgrestQueryBuilder
, the table prop from from()
is handed off to SupabaseRealtimeClient
when calling on()
. So the postgrest syntax is not validYelloJello
07/29/2021, 9:57 AMJW
07/29/2021, 9:59 AMYelloJello
07/29/2021, 10:00 AMYogurtDrinker
07/29/2021, 10:35 AM<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
<script src="index.js"></script>
YogurtDrinker
07/29/2021, 10:36 AMconst { createClient } = supabase;
const supabase = createClient('MyLink', 'MyKey');
document.addEventListener("load", async() => {
const {data, error} = await supabase.from("Course").select();
console.log(data);
});