AssertionError: el campo relacional debe proporcionar un argumento `QuerySet`, anular` get_queryset` o establecer read_only = `true

artist = serializers.PrimaryKeyRelatedField(many=True, queryset=User.objects.all())
MitchAloha