I have a ndb model class:
class Game(ndb.Model):
gameID = ndb.IntegerProperty()
gameName = ndb.StringProperty()
Is there any way to quickly just delete all entities thats stored in the database for this class? Something like Game.deletAll()
query
is a list of keys: ndb.delete_multi(query) – Lingo