i saw *throughquery* of class Many2ManyRelatedManager, so i can get a ManyToMany through model's by
for skill_level in Play.models.filter(name='tom')[0].skills.throughquery().items():
skill_level.level
Correct, the *throughquery* method will give you a Query on the actual model which is linking the two models in the many-to-many relationship.
but there's only a throughquery, and NO throughfilter. so i think it's impossible to query a many-many models filed in StdNet's current version.
The *throughquery* method returns a Query and therefore you can chain additional query-methods such as filter, exclude and so forth
Player.objects.get(name='tom').skills.throughquery().filter(...)
The ManyToManyField is not properly documented unfortunately