Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ltollesonYou can use the sort node to sort your data. The field name that you want to sort your data by should go in the "CompareOrderExpr" parameter. By default data is sorted in ascending order by the key you provided in CompareOrderExpr. If your data needs to be sorted in descending order you should use the reverse() function.
Example
CompareOrderExpr
fileldname
OR
fieldname.reverse()
Your sort key can also be multiple field names.
Example
field1, field2, field3.reverse()