Hello everyone!
I have datatable visualization and need multiply sort (two fields), also I need to get 15% of sorted results. Can I do this in visState, using elasticsearch sort, and how?
I tried to sort by the end of the request but It doesn't seem to work
"sort": [
{
"amount": {
"order": "desc"
},
"orders": {
"order": "desc"
}
}
],
"size": 150 ( for example, don't know how to write %)
Thx.