I have Boys and Toys. Two django models. Toys can be owned by more than one Boy and each boy can own more than one Toy... So I've put a ManyToMany field in Boy.
If I want a list of toys owned by a single boy, it's easy. So good so far.
But now I need to get a list of Boys based on a Toy instance. The relationship should be symmetrical but I don't know the syntax.
Note: No, these aren't my real entity names - I just thought it might be easier to follow.