I would like to be able to remove all the items from my database with code. I found out that Velo has a delete function, but I am not sure if I need to call it manually on every item or not?
You can use the count function to get the total number of items in the collection and the use the bulkRemove function to delete the items.
Thank you, but the bulkRemove function needs the individual ID’s of the items to remove. But I believe that I can just query all the items in the database, then map through and return the ID’s and pass that into the bulkRemove function.