I am sorry if my query is stupid but please excuse me as i am new to google app engine and python I have and entity named Location
class Location(db.Model):
place = db.StringProperty(required = True)
address = db.TextProperty(required = True)
approx_distance = db.StringProperty(required = True)
The GQL query
location = db.GqlQuery("SELECT * FROM Location WHERE place='Mumbai'")
gives an attribute error
AttributeError: 'GqlQuery' object has no attribute 'place'
Please help