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
const { data, error } = await supabase.from("tbl_transaction").insert({ }).select();
apparantly if your table on from() method is incorrect when inserting data wont return any error . is this by design or bug ? thank you .
lets say instead of tbl_transaction you put transaction_table then it will just show error: {} as return for error and null for data .
Steps to reproduce the behavior, please provide code snippets or a repository:
It should return an error for wrong table name inserted .
If applicable, add screenshots to help explain your problem.
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Describe the bug
apparantly if your table on from() method is incorrect when inserting data wont return any error . is this by design or bug ? thank you .
lets say instead of tbl_transaction you put transaction_table then it will just show error: {} as return for error and null for data .
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Expected behavior
It should return an error for wrong table name inserted .
Screenshots
If applicable, add screenshots to help explain your problem.
System information
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: