You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
serializers.py
class CategoryGetSerializer(serializers.ModelSerializer):
children = RecursiveField(many=True, read_only=True)
class Meta:
model = Category
fields = "__all__"
DJango 4.1
djangorestframework==3.14.0
No data is response here in children. but here parent has many ids.
I want to all children serializers in children.
How can i solve this problem???
The text was updated successfully, but these errors were encountered: