I have a model which has a required string property like the following:
class Jean(db.Model):
sex = db.StringProperty(required=True, choices=set(["male", "female"]))
When I try calling Jean.all(), python complains about not having a required property.
Surely there must be a way to get all of them.
If Steve is correct (his answer does make sense). How can I determine if that's actually causing the problem. How do I find out what exactly is in my datastore?