Paul Bénéteau
Paul Bénéteau
Why can't I use the primary key 'id' as the match_field? I have no unique_together fields.
Here is my model: ``` class MyModel(models.Model): """Store information about an item""" id = models.IntegerField(primary_key=True) name = models.CharField(max_length=100) slug = models.CharField(max_length=200) symbol = models.CharField(max_length=40) sign = models.CharField(max_length=5, blank=True, null=True) rank...
Yeah sorry just renamed it... its MyModel instead. Yeah I've check that already, no duplicates.
I was also trying to implement this custom view using python_social_auth but the issue there is that I can't chose which auth backend I want (session, JWT, know, etc). So...
Same error for me, did you mange to make it works?
no
I think it is when I send several requests in a loop with a large amount of ids. For example 1000 ids (which is the max limit) for the cryptocurrency...