Hello, when using a sort field, I'm getting every _meta.score = null value
I'm sorting products by price. When ordering by price asc, I'm getting cheap products that have nothing to do with the query field.
REQUEST
{
"query": "zapatillas",
"page": {
"size": 1000,
"current": 1
},
"search_fields": {
"nombre": { "weight":3 },
"descripcion": { "weight":1 },
"localnombre": { "weight":1 }
},
"result_fields": {
"id": { "raw": {} },
"nombre": {"raw": {} },
"idgaleria": {"raw": {} },
"precio": { "raw": {} },
"foto": { "raw": {} },
"localdireccion": { "raw": {} },
"random": { "raw": {} }
},
"sort": {"precio": "asc"}
}
RESPONSE
{
"meta": {
"alerts": [],
"warnings": [],
"page": {
"current": 1,
"total_pages": 1,
"total_results": 989,
"size": 1000
},
"engine": {
"name": "productos",
"type": "default"
},
"request_id": "ac65c458-4861-47f8-b84e-657d560d990e"
},
"results": [
{
"foto": {"raw": "1_thumb.jpg"},
"precio": {"raw": 63},
"_meta": {
"engine": "productos",
"id": "7118",
"score": null
},
"idgaleria": {"raw": 0},
"id": {"raw": "7118"},
"nombre": {"raw": "plantines para zapatilla de dama"},
"localdireccion": {"raw": "CARACAS 666"},
"random": {"raw": 7118}
},
...