diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py index 1e161ec16..8e1e50bc7 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -1038,7 +1038,7 @@ class ModelSerializer(Serializer): class NestedSerializer(ModelSerializer): class Meta: model = relation_info.related_model - depth = nested_depth + depth = nested_depth - 1 field_class = NestedSerializer field_kwargs = get_nested_relation_kwargs(relation_info)