I'm developing an app that uses the user's nickname which is applied
to the URL, something like:
domain.com/person1, domain.com/person2
These URLs refer to the user's profile page or something like that.
So I was trying this and it spits an error:
greetings = db.GqlQuery('SELECT * FROM Greetings WHERE who.nickname = :
1', nickname)
I know the error is that 'who.nickname'. 'who' is a db.UserProperty().
'nickname' comes from the URL. Is it possible to query based on just
the nickname instead of the whole db.userProperty() thing?
Thanks