How do I serialize a many-to-many field into list of something, and return them through rest framework? In my example below, I try to return the post together with a list of
This works for me.
tag = TagSerializer(source="tag", read_only=True, many=True)