children

Gets all the children of that type. Specifically, it looks in T for a ForeignKey referencing B and queries on that.

To do a join through a many-to-many relationship, you could get the children of the join table, then get the children of that... Or better yet, use real sql. This is more intended to get info where there is one parent row and then many child rows, not for a combined thing.

children
(
T
B
)
()

Meta