Google appengine datastore tree structure
        Posted  
        
            by Matthew
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Matthew
        
        
        
        Published on 2010-04-09T03:38:58Z
        Indexed on 
            2010/04/09
            3:43 UTC
        
        
        Read the original article
        Hit count: 414
        
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))
© Stack Overflow or respective owner