This seems crazy that I have to ask but I cannot find the right syntax to sort query result using ReactiveMongo. So if I had this:
rCollection.flatMap(
// find all
_.find(Json.obj())
// perform the query and get a cursor of JsObject
.cursor[Resort](ReadPreference.primary)
// Collect the results as a list
.collect[List](Int.MaxValue, Cursor.FailOnError[List[Resort]]())
)
How would I sort by a particularly column in descending order.
This would probably be:
)
The JSON object you send to the 'sort' function would be the same JSON you'd use in mongo query for sorting. eg:
sorts by age ascending and then lastName descending.