Open
Description
Improve documentation
Link
https://supabase.com/docs/reference/javascript/rpc
Describe the problem
Please add that in second argument/params must be empty/undefined/null for using replica, not put it in second argument
example:
const {data} = await supabase.rpc('function_name', undefined, { get: true, });
Describe the improvement
Change the replica rpc documentation to this
const {data} = await supabase.rpc('function_name', undefined, { get: true, });