998
Views
1
Comments
Solved
How do I delete data from my database for an Entity?
Discussion

I am trying to just clear the test data I sent to my database. How do I quickly refresh/clear this out?

2024-12-17 14-32-59
Matthias Preuter
 
MVP
Solution

Just create a action with a Advanced query with the statement:

DELETE FROM {YourEntity1};

DELETE FROM {YourEntityX};

For all entities in module, taking into account the references between the entities


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.