Is it possible to ORDER results with Query or Scan API in DynamoDB?
I need to know if DynamoDB has something like [ORDER BY \'field\'] from SQL queries?
Tha
Another option which should solve the problem is to
This will enable sorting of any value of your table as required. It is a very efficient way to find the highest ranking items in your table without the need to get the whole query and then filtering it afterwards.