reco
07/13/2022, 12:50 PMltree
with supabase? Cannot get path queries to work in supabase...martypdx
07/13/2022, 1:20 PMinstance_id
in the users
table and how is it same/different than the id
?lavenderlav
07/13/2022, 1:25 PMDmitriy2501
07/13/2022, 2:03 PMcreate or replace function get_device_info(id uuid)
returns setof devices as $$
select devices
from devices
where devices.id = $1;
$$ language sql immutable;
LinkPlay
07/13/2022, 2:05 PM.from('countries:id=eq.200')
.
Now im want to listen to when id is changing to something else like 201
, but was 200
before (i.e. payload.old.id === 200
but payload.new.id === 201
).
It seems that my row level subscription with eq.200
isn't catching this change, since the id gets changed to 201
.
Is there any way to listen to "old" values?Martin Piliar
07/13/2022, 2:55 PMJordan C
07/13/2022, 3:09 PMelJEMPlay
07/13/2022, 4:14 PMn10000k
07/13/2022, 4:20 PMChiqui
07/13/2022, 4:40 PMBicijay
07/13/2022, 4:45 PMmartypdx
07/13/2022, 4:49 PMuid() = user_id
and a select policy that requires authenticated
role, but do not receive notifications. (confirmed that if I turn off RLS notifications occur)snoodleking
07/13/2022, 5:52 PMstevekrouse
07/13/2022, 6:13 PMdrewbie
07/13/2022, 6:14 PMApe R Us
07/13/2022, 6:57 PMGuy Butts (datalytyks)
07/13/2022, 9:15 PMDerek
07/13/2022, 9:26 PMsupabase.from('artist').select('*, album(*)').eq('id', 5).limit(1).single()
InASunshineState
07/13/2022, 11:21 PMMementoMori
07/14/2022, 2:32 AMAmusedGrape
07/14/2022, 2:33 AMvishwasnavadak
07/14/2022, 5:11 AMbenten
07/14/2022, 5:31 AMsupabase.auth.api.getUserByCookie
making a fetch request to the server? Is is possible to determine the user ID and legitimacy of the JWT synchronously ?PerQuiS
07/14/2022, 8:07 AMFehmi
07/14/2022, 8:50 AMpsql
command but keep getting the error below
% psql -h db.XXXXXXXXXX.supabase.co -U postgres -d postgres
psql: error: connection to server at "db.XXXXXXXXXX.supabase.co" (XXXXXXXXXX), port 5432 failed: Connection refused
Is the server running on that host and accepting TCP/IP connections?
I have tried restarting the server from the web UI, but still cannot connect from my machine.OLZHAS
07/14/2022, 10:18 AMvirtualdominic
07/14/2022, 10:27 AMmohnish
07/14/2022, 10:39 AMpoutingemoji
07/14/2022, 11:13 AMjaitaiwan
07/14/2022, 1:49 PM