Google appengine datastore tree structure
- by Matthew
I need to be able to make a tree like structure in the appengine database.
I have try to make an object reference itself but have not gotten it to work.
class Item(db.Model):
children = db.ListProperty(db.ReferenceProperty(Item))