There is a code in which django serializers are used to serialize django model to json type.
result = Items.objects.filter(product_type__name = subcategory)
result = result.filter(item_name__icontains=autoc)
result = serializers.serialize('json', result, fields=('item_name',))
There has to be a place in which serializers have stored the data for Model "Items". I want to know what is the data. Where is the data stored? Thanks in advance.