Posts by Lucas Weber • 21 points
2 posts
-
1
votes1
answer54
viewsA: Problem sorting Elasticsearch/Django query
If anyone had that same problem what was missing was adding the field to the search_indexes.py as follows: full_name = indexes.CharField(model_attr='full_name', indexed=False, stored=True) That…
-
0
votes1
answer54
viewsQ: Problem sorting Elasticsearch/Django query
I have this model of Django: class Profile(User): rg = models.CharField(max_length=20, null=True,blank=True) cpf = models.CharField(max_length=15, unique=True, null=True) about =…