'Error in $: not enough input' on .update()
See original GitHub issueBug report
To Reproduce
res = db.table(table_name).update({"notes": notes}).eq("id", user_id).execute()
Expected behavior
Update and return me the row.
Actual behaviour
{'data': {'message': 'Error in $: not enough input'}, 'status_code': 400}
System information
- Version of supabase-py: 0.0.2
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Not Enough Input Arguments - MATLAB Answers - MathWorks
Hi, I'm very new to MATLAB and I am having some trouble. Lots of people have had the same problem but nobody seems...
Read more >Matlab not enough input arguments - eduCBA
This is a very simple method to solve the not enough input argument error. In this method, we simply create the input whatever...
Read more >Error in $: not enough input when inserting the data using ...
We got a 400 error with Postgres error code PGRST102 and message: "Error in $: not enough input" for a simple inserting call...
Read more >Error using ''error'' - not enough input arguments (Matlab ...
This error means that you have not provided enough input arguments to the function. You need to provide more information to the function...
Read more >MATLAB Language Tutorial => Not enough input arguments
The reason why this error may not happen is because you wrote a MATLAB script or a function that takes in no input...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hello @dreinon - I am running into the same issue again despite having the latest supabase version.
I am trying to update a single column using id as the matching value. My id is stored in uuid format and is generated using uuid_generate_v4()
supabase_client.table("table").update({"field": "True"}).eq("id", str(local_data.iloc[x]['id'])).execute()
Make sure to update your supabase version to the latest and tell us if you still face the issue please 😊 @Krish-Nerkar