GAE python NDB projection query working in development but not in production
I've been hitting my head against the wall because my Google App Engine python project has a very simple NDB projection query which works fine on my local machine, but mysteriously fails when deployed to production. Adding to the mystery... as a test I added an identical projection on another property, and it works in both dev and production! Could anyone help please?! Here are more details: I have the following entity that represents an expense: class Entry(ndb.Model): datetime = ndb.DateTimeProperty(indexed=True, required=True) amount = ndb.IntegerProperty(indexed=False, required=True) payee