I am trying to model a parent hierarchy relationship in Google App Engine using Python. For example, I would like to model fruit.
So the root would be fruit, then a child of fruit would be vine-based, tree-based. Then for example children of tree-based would be apple, pear, banana, etc. Then as children of apple, I would like to add macintosh, golden delicious, granny smith, etc.
I am trying to figure out the easiest way to model this such that I can put in another entity of type basket a an entity of type fruit, or of type granny smith.
Any help would be greatly appreciated!
Thanks Jon