NDB Query with Computed Property returns a blank list
问题 I'm trying to query an ndb Model with a computed property, but it's returning an empty list. This answer suggests that I should be able to query computed properties and so do the docs. What am I doing wrong? from django.template import defaultfilters class Video(models.SfxModel): title = ndb.StringProperty() slug = ndb.ComputedProperty( lambda self: str(defaultfilters.slugify(self.title)) ) In Interactive Console from app.lib.videos import Video slug = Video.query().get().slug print slug # =>