I have the following model structure:
class Project(models.Model): author = models.ManyToManyField(Account) name = models.CharField(max_length=40, default=\'
You need to set many=True when dealing with multiple relation - either a m2m or a reversed FK:
many=True
author = AccountSerializer(read_only=True, required=False, many=True)