I have a category tree and i'd like to get all products that are in the category tree. MPTT's documentation indicates that it only has methods that you can call to get objects.
I'm wondering how i can get it to work with related objects, for example, this syntax would ideal:
Product.objects.get(Q(category__ancestors=my_category)|Q(category=my_category))
Is there anything like this in django-mptt?