Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specifying many=True when using swagger_serializer_method? #686

Open
OskarPersson opened this issue Dec 29, 2020 · 1 comment
Open

Specifying many=True when using swagger_serializer_method? #686

OskarPersson opened this issue Dec 29, 2020 · 1 comment

Comments

@OskarPersson
Copy link

How do I specify that this will return a list (note many=True)?

@swagger_serializer_method(serializer_or_field=APIProfileSerializer)
def get_profiles(self, obj):
    return APIProfileSerializer(obj.profiles, many=True).data
@cbek
Copy link
Contributor

cbek commented Jan 22, 2021

I guess what you are looking for is:

@swagger_serializer_method(serializer_or_field=APIProfileSerializer(many=True))
def get_profiles(self, obj):
    return APIProfileSerializer(obj.profiles, many=True).data

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants