I am using django mptt and i want to get all whole family of one child. When i call other functions it works fine
For example i filter object and call function get_family
p = Platform.objects.filter(name__startswith='signals')
s = p.get_family()
print(s)
but getting error
AttributeError: 'TreeQuerySet' object has no attribute 'get_family'