I am using Google App Engine on localhost. I have 2000 entities of kind Book in the Datastore. I want to delete the first 1900 (the keys range from 1 to 1901). How would I do that from the interactive console? I am using ndb as opposed to db
Maybe there is some sort of range functionality.
For example, I try the following, but nothing happens.
from myddb import Book
list= Book.gql("WHERE ID < 193")
for entity in list:
db.delete(entity)
EDIT:
Based on response from @Lipis the following is working
from myddb import Book
from google.appengine.ext import ndb
book_keys = Book.query().fetch(keys_only=True)
ndb.delete_multi(book_keys)
But that deletes everything. What I need to work is query by Key aka ID like
book_keys = Book.query(Article._Key < 1901).fetch(keys_only=True)