BBAznB
BuildShip2y ago
13 replies
BBAzn

how do i make an API call to a supabase function? I have the variable to pass its just one variable.

how do i make an API call to a supabase function? I have the variable to pass its just one variable.

Please provide examples. I am having trouble with the buildship syntax.
Solution
Hey, @Russell, You can click the node info tooltip to get the steps on how to create a Supabase RPC function and use it. Here's an example function I used to test the RPC node.
BEGIN
  RETURN 'Hello, ' || name || '!';
END;
Was this page helpful?