This is a follow-up to this question:
How do I correctly reference Users in GQL queries on App Engine?
In my app, I have a Photos db.Model, where each photo has a UserProperty. I want to display a list of users, where clicking on a user will show all of the user's photos.
What is the best way to reference the user when creating a link to the user's photo page?
I've found two options, both which have their shortcomings.
- user.nickname() - this can be used in a GQL query (e.g. Photos.gql("WHERE user = USER(:1)", user.nickname()) ), but it can change, it's not necessarily unique, and sometimes (e.g. for Gmail addresses) user.nickname() truncates at the '@' symbol and can't be used for lookups without appending "@gmail.com".
- user.user_id() - this is unique, but I haven't found a way to lookup a user by the user_id()
Is there a better way to do this? Currently, I'm storing both the user and the user_id() on the Photo model, doing a GQL search by user_id passed in the link, and then referencing the user from the UserProperty on the Photo model.