Is there a good way to test psql functions directl...
# sql
s
Is there a good way to test psql functions directly from the supabase ui?
h
You could just run them in the SQL Console?
s
You can call them from there?
I want to check that I've got all return types etc correct as well. I've been calling it via JS to test but thought there might be a quicker method
So you just do
select "fn name here"(params);
???
Damn that would've saved time lol
h
Yeah!
or if you dont want the response you can use
EXECUTE
or
PERFORM
as was discused in #902127250487541771