I have serializer like this:
`class ExperienceSerializer(serializers.ModelSerializer):
experience_type = ChoicesField(choices=Experience.EXPERIENCE_TYPE)
location = serializers.SlugRelatedField(slug_field='name_std', queryset=City.objects.all())
`
Whenever I enter "Delhi" as location It fails with "get() returned more than one City -- it returned 2!"
There are cities with same name so how to hanle this scenario?