Order
The structure of the order section is similar to SQL. This implies the following: First a field : Project.ID followed by optionally a direction: ASC,DESC. You can add more than one option seperated with comma.
ORDER BY project.id ASC, item.id DESC
Was this helpful?