So I want to delete some data. The models have a number of items so
rather than paging through them all 20 at a time to delete.
But you can select and delete 200 recodes at time , This is the tip.
- Go to appengine Data browser and select your need Kind
- Click Next 20 Link
- See your current url , it should seems to be like this pattern “query=SELECT * FROM Counter&limit=20&offset=20″
- Just change the limit=20 to limit=200
- The you can select and delete 200 records at ones.