I have the following simple elastisearch query:
http://localhost:9200/apn/presupuesto/_search?q=subcuenta:penal&sort=anio
And it works fine
Now I'm trying to order by anio desc. I tried with all these options:
...l&sort=anio desc
...l&sort=-anio
...l&sort=anio&order=desc
But none of them seemed to work
How can I achieve it? (ideally, from the querystring, without having to use a more complex query)