Re: [sqlalchemy] Polymorphic adjacency lists and many-to-many

2015-02-08 Thread Michael Bayer
YKdvd wrote: > I have model FruitCategories which uses the bidirectional adjacency list > pattern ("Node") from the documentation. It is used to create a many-to-many > connection to a model, say, Fruit, with an association table ("fruits_cats"), > again vanilla like the docs. This all wor

[sqlalchemy] Polymorphic adjacency lists and many-to-many

2015-02-07 Thread YKdvd
I have model FruitCategories which uses the bidirectional adjacency list pattern ("Node") from the documentation. It is used to create a many-to-many connection to a model, say, Fruit, with an association table ("fruits_cats"), again vanilla like the docs. This all works great. I have other c