Skip to content

Instantly share code, notes, and snippets.

@walison17
Created June 8, 2020 22:44
Show Gist options
  • Save walison17/f1bd9b9da074e47b09322f2e3fc15c9a to your computer and use it in GitHub Desktop.
Save walison17/f1bd9b9da074e47b09322f2e3fc15c9a to your computer and use it in GitHub Desktop.
class ItemSerializer(serializers.ModelSerializer):
class Meta:
model = Item
fields = "__all__"
class CreatePointSerializer(serializers.ModelSerializer):
class Meta:
model = Point
fields = "__all__"
class ReadPointSerializer(CreatePointSerializer):
itens = ItemSerializer(many=True, source="item")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment