1👍
✅
As stated by the tastypie docs :
ModelResource subclass will introspect all non-relational fields
So you must add the groups field to your UserResource :
class UserResource(ModelResource):
groups = fields.ManyToManyField(GroupResource, 'groups', null=True, full=True)
class Meta:
[...]
Source:stackexchange.com