batch delete #4831
-
Is there a way to do batch delete with supbase? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
With supabase.js or the API delete takes a filter. for .js you should be able to use .in('id', ['id1', 'id2', 'id3']) where 'id' is your record id. |
Beta Was this translation helpful? Give feedback.
-
Searching for this for python, if anyone has found a solution! |
Beta Was this translation helpful? Give feedback.
-
I found another method to be able to bulk delete but it uses a few steps.
This is the only way that I've found to do it. |
Beta Was this translation helpful? Give feedback.
With supabase.js or the API delete takes a filter. for .js you should be able to use .in('id', ['id1', 'id2', 'id3']) where 'id' is your record id.