I created an entity in the Google App Engine datastore.
How can I remove this entity?
Additionally, you can also try something like the following (In Python pseudo-code):
class MyClass(ndb.Model):
myString = ndb.StringProperty(indexed=false)
def deleteAllEntities():
entities = MyClass.query()
for entity in entities:
entity.key.delete()
Admittedly there are better ways to do bulk deletion, but this is a way you can use if you are having trouble.
More info here: https://cloud.google.com/appengine/docs/python/datastore/entities#Python_Deleting_an_entity