So you are describing something like this:
class Magazine(db.Model): ArticleList = db.ListProperty(db.Key) class Article(db.Model): ArticleName = db.StringProperty() ArticleDate = db.DateProperty()
In this case, the easiest way to capture the listed articles is to use the Model.get () method, which searches for a list of keys.
m = Magazine.get()
Depending on how you plan to work with the data, you might be better off adding a link property to the log for your Article objects instead.
source share