Hi Elastic Search Team,
Thanks for the opportunity you gave us to ask the questions.
I have one query on the sorting.
Lets say we have sample data below:
Name Date Rank
A 01-02-2001 2
A 01-02-2002 3
A 01-02-2003 10
B 05-06-2011 5
B 05-06-2012 15
B 05-06-2013 1
C 11-12-1996 4
C 11-12-1997 34
C 11-12-1998 9
So after first level of sorting based on the collapse of parameter "Date" on descending order:
We get the following result:
Name Date Rank
B 05-06-2013 1
A 01-02-2003 10
C 11-12-1998 9
Now , i want to sort based on the "Rank" parameter in descending order
So the desired expected output should be:
Name Date Rank
A 01-02-2003 10
C 11-12-1998 9
B 05-06-2013 1
Is the above output possible??
Please let me know if it is..
Thanks in advance.