Skip to content

Instantly share code, notes, and snippets.

@vinay13
Created February 4, 2016 07:23
Show Gist options
  • Save vinay13/90b13edfd7a98668fb55 to your computer and use it in GitHub Desktop.
Save vinay13/90b13edfd7a98668fb55 to your computer and use it in GitHub Desktop.
class SomeSpecialCustomField(serializers.Field):
def to_native(self, value):
queryset = Bar.objects.filter(pk__in=value)
serializer = BarSerializer(queryset, many=True)
return serializer.data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment