AppEngine: Query datastore for records with <missing> value
I created a new property for my db model in the Google App Engine Datastore. Old: class Logo(db.Model): name = db.StringProperty() image = db.BlobProperty() New: class Logo(db.Model): name = db.StringProperty() image = db.BlobProperty() is_approved = db.BooleanProperty(default=False) How to query for the Logo records, which to not have the 'is_approved' value set? I tried logos.filter("is_approved = ", None) but it didn't work. In the Data Viewer the new field values are displayed as . According to the App Engine documentation on Queries and Indexes , there is a distinction between entities