We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I keep getting
{ "code": "22P02", "details": null, "hint": null, "message": "invalid input syntax for type uuid: \"\"" }
when passing this
const p_user_id = userId as UUID; console.log("p_user_id", p_user_id); // totally fine I even validated with uuidValidate const { data, error } = await supabase.rpc("fetch_user_roles_permissions", { p_user_id, });
However when I put quotes around it, I get the uuid in the response error like:
{ "code": "22P02", "details": null, "hint": null, "message": "invalid input syntax for type uuid: \"\"7979b040-3f6e-42ec-8318-ee696638bbde\"\"" }
What happens to the UUID? And why the error?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I keep getting
when passing this
However when I put quotes around it, I get the uuid in the response error like:
What happens to the UUID? And why the error?
The text was updated successfully, but these errors were encountered: