Sorting options for orders

Maybe I missed those in the docs, but I can’t find the possible values of the sort parameter in the orders query.
I’d like to know what are the sorting options. It would be nice to have this defined as an enum in the GraphQL schema this way it’d be automatically documented.

Hi Ant!,
you are absolutely right, you should be able to use sort when:

Sort will be applicable only when requesting queries that return multiple results (Connection Fields). Here you can specify a comma-separated list of attributes to sort the results. The default is to sort by ascending, but you can specify different criteria on each field, by pre-pending (+ or -). Ex: sort: "name, -price"

I’ll make sure to add that to our documentation as well. Thank you for the observation!
Let me know if theres anything else I can help with

Tom