Perform a function call.
The function name to call
The arguments to pass to the function call
Named parameters
const { data, error } = await supabase.rpc('hello_world')
const { data, error } = await supabase.rpc('echo', { say: '👋' })
const { data, error } = await supabase.rpc('add_one_each', { arr: [1, 2, 3] })
const { data, error } = await supabase
.rpc('list_stored_countries')
.eq('id', 1)
.single()
const { data, error } = await supabase.rpc('hello_world', undefined, { get: true })