I have 3k entries on a database which I want to clear. But, deleting just 50 takes 1-2 minutes for some reason. How can I delete every single entry fast?
Here’s my preferred method:
- Create an admin page on your app
- Add a button to “delete all entries”
- Add a workflow to the button that does a search for all entries and deletes them
- Test & Push live
- Click the button. Done.
2 Likes
Alternatives …
1.1) Create an API workflow that schedules the deletions on a list. Then run against the database with the editor using the “bulk” function.
1.2) Go and get a cup of tea
- Same as above, but with a button on an admin page. Delete 500 at a time.
1 Like
Thanks for the help!
This topic was automatically closed after 70 days. New replies are no longer allowed.